OSDN Git Service

2012-12-15 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / variadic83.C
1 // PR c++/31441
2 // { dg-options "-std=gnu++0x" }
3
4 template<typename> struct A;
5
6 template<typename... T> struct A<T...> { }; // { dg-bogus "cannot expand" "" }
7
8 A<int> a; // { dg-bogus "incomplete type" "" }