c++: hash table ICE with variadic alias [PR105003]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nontype5.C
blobc31134581aa45486b8152f1c51df3f16751e89d3
1 // PR c++/91923 - failure-to-SFINAE with class type NTTP in C++17.
2 // { dg-do compile { target c++11 } }
4 template<typename T>
5 constexpr bool is_integral_(...) {
6     return false;
8 template<typename T, T = 1>
9 constexpr bool is_integral_(long) {
10     return true;
13 static_assert(is_integral_<int>(42), "");
14 static_assert(!is_integral_<void>(42), "");
16 struct S {};
17 static_assert(!is_integral_<S>(42), "");