c++: hash table ICE with variadic alias [PR105003]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nullptr40.C
blob21c188bdb5e761d5a22d3271b7d8df9fc16d1eac
1 // PR c++/89212
2 // { dg-do compile { target c++11 } }
4 template <int, typename T> using enable_if_t = int;
6 template<class X, void(X::*foo)() = nullptr>
7 struct p
9     template<void(X::*fun)() = foo, typename T = enable_if_t<nullptr == fun, int>>
10     p(T) { }
11     p() = default;
14 struct A
16     p<A> i = 1;
17     void bar();
18     p<A, &A::bar> j;