c++: hash table ICE with variadic alias [PR105003]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / inh-ctor36.C
blobc531af9bd27bc0438e1119117ba4b4cb212e4118
1 // { dg-do compile { target c++11 } }
3 struct A { A(); A(int); };
5 template <class... T> struct C: T...
7   using A::A;
8 };
10 C<A> c1(42);