diff options
Diffstat (limited to 'clang/test/SemaCXX/enable_if.cpp')
-rw-r--r-- | clang/test/SemaCXX/enable_if.cpp | 41 |
1 files changed, 36 insertions, 5 deletions
diff --git a/clang/test/SemaCXX/enable_if.cpp b/clang/test/SemaCXX/enable_if.cpp index a2795c418c6..7ec07aa8b0c 100644 --- a/clang/test/SemaCXX/enable_if.cpp +++ b/clang/test/SemaCXX/enable_if.cpp @@ -116,9 +116,9 @@ template <typename T> class C { void g() { f(); } }; -int fn3(bool b) __attribute__((enable_if(b, ""))); +int fn3(bool b) __attribute__((enable_if(b, ""))); // FIXME: This test should net 0 error messages. template <class T> void test3() { - fn3(sizeof(T) == 1); + fn3(sizeof(T) == 1); // expected-error{{no matching function for call to 'fn3'}} expected-note@-2{{candidate disabled}} } template <typename T> @@ -138,7 +138,7 @@ void test4() { void h(int); template <typename T> void outer() { void local_function() __attribute__((enable_if(::h(T()), ""))); - local_function(); + local_function(); // expected-error{{no matching function for call to 'local_function'}} expected-note@-1{{candidate disabled}} }; namespace PR20988 { @@ -158,9 +158,9 @@ namespace PR20988 { fn2(expr); // expected-error{{no matching function for call to 'fn2'}} } - int fn3(bool b) __attribute__((enable_if(b, ""))); + int fn3(bool b) __attribute__((enable_if(b, ""))); // FIXME: This test should net 0 error messages. template <class T> void test3() { - fn3(sizeof(T) == 1); + fn3(sizeof(T) == 1); // expected-error{{no matching function for call to 'fn3'}} expected-note@-2{{candidate disabled}} } } @@ -386,3 +386,34 @@ void runFoo() { f.bar(1, 2); // expected-error{{too many arguments}} } } + +// Ideally, we should be able to handle value-dependent expressions sanely. +// Sadly, that isn't the case at the moment. +namespace dependent { +int error(int N) __attribute__((enable_if(N, ""))); // expected-note{{candidate disabled}} +int error(int N) __attribute__((enable_if(!N, ""))); // expected-note{{candidate disabled}} +template <int N> int callUnavailable() { + return error(N); // expected-error{{no matching function for call to 'error'}} +} + +constexpr int noError(int N) __attribute__((enable_if(N, ""))) { return -1; } +constexpr int noError(int N) __attribute__((enable_if(!N, ""))) { return -1; } +constexpr int noError(int N) { return 0; } + +template <int N> +constexpr int callNoError() { return noError(N); } +static_assert(callNoError<0>() == 0, ""); +static_assert(callNoError<1>() == 0, ""); + +template <int N> constexpr int templated() __attribute__((enable_if(N, ""))) { + return 1; +} + +constexpr int A = templated<0>(); // expected-error{{no matching function for call to 'templated'}} expected-note@-4{{candidate disabled}} +static_assert(templated<1>() == 1, ""); + +template <int N> constexpr int callTemplated() { return templated<N>(); } + +constexpr int B = callTemplated<0>(); // expected-error{{initialized by a constant expression}} expected-error@-2{{no matching function for call to 'templated'}} expected-note{{in instantiation of function template}} expected-note@-9{{candidate disabled}} +static_assert(callTemplated<1>() == 1, ""); +} |