pt.c (register_specialization): Push DECL_SOURCE_LOCATION to the clones.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic83.C
blob2613d625f09eef958209945734f911973447327d
1 // PR c++/31441
2 // { dg-options "-std=gnu++0x" }
4 template<typename> struct A;
6 template<typename... T> struct A<T...> { }; // { dg-bogus "cannot expand" "" { xfail *-*-* } }
8 A<int> a; // { dg-bogus "incomplete type" "" { xfail *-*-* } }