/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic82.C
blobf9bbc3532685511eea418d3f087ce4d62febdc7f
1 // PR c++/33461
2 // { dg-do compile { target c++11 } }
4 template<typename> struct A;
6 template<typename... T> struct A<T*...> // { dg-bogus "cannot expand" "" }
8   struct B;
9 };
11 A<void*> a; // { dg-bogus "incomplete type" "" }