2008-07-06 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic82.C
blob5acbc83a060e8c2b3cb32143bb35449e67a3f70d
1 // PR c++/33461
2 // { dg-options "-std=gnu++0x" }
4 template<typename> struct A;
6 template<typename... T> struct A<T*...> // { dg-error "cannot expand" }
8   struct B;
9 };
11 A<void*> a; // { dg-error "incomplete type" }