Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / cpp0x / variadic82.C
blobfb3ddb3c9b9cba3165393501d66b8abf756c13ea
1 // PR c++/33461
2 // { dg-options "-std=gnu++0x" }
4 template<typename> struct A;
6 template<typename... T> struct A<T*...> // { dg-bogus "cannot expand" "" { xfail *-*-* } }
8   struct B;
9 };
11 A<void*> a; // { dg-bogus "incomplete type" "" { xfail *-*-* } }