OSDN Git Service

PR c++/44157
[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" "" { xfail *-*-* } }
7
8 A<int> a; // { dg-bogus "incomplete type" "" { xfail *-*-* } }