diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:23:48 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:23:48 +0000 |
commit | 06d4ba388873e6d1cfa9cd715a8935ecc8cd2097 (patch) | |
tree | 3eb853da77d46cc77c4b017525a422f9ddb1385b /test/SemaCXX/issue547.cpp | |
parent | 30d791273d07fac9c0c1641a0731191bca6e8606 (diff) |
Notes
Diffstat (limited to 'test/SemaCXX/issue547.cpp')
-rw-r--r-- | test/SemaCXX/issue547.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/SemaCXX/issue547.cpp b/test/SemaCXX/issue547.cpp index bfec6e080ba5..2a9dd13adf4e 100644 --- a/test/SemaCXX/issue547.cpp +++ b/test/SemaCXX/issue547.cpp @@ -27,32 +27,32 @@ struct classify_function<R(Args...) const volatile> { }; template<typename R, typename ...Args> -struct classify_function<R(Args......)> { +struct classify_function<R(Args..., ...)> { static const unsigned value = 5; }; template<typename R, typename ...Args> -struct classify_function<R(Args......) const> { +struct classify_function<R(Args..., ...) const> { static const unsigned value = 6; }; template<typename R, typename ...Args> -struct classify_function<R(Args......) volatile> { +struct classify_function<R(Args..., ...) volatile> { static const unsigned value = 7; }; template<typename R, typename ...Args> -struct classify_function<R(Args......) const volatile> { +struct classify_function<R(Args..., ...) const volatile> { static const unsigned value = 8; }; template<typename R, typename ...Args> -struct classify_function<R(Args......) &&> { +struct classify_function<R(Args..., ...) &&> { static const unsigned value = 9; }; template<typename R, typename ...Args> -struct classify_function<R(Args......) const &> { +struct classify_function<R(Args..., ...) const &> { static const unsigned value = 10; }; |