OSDN Git Service

PR c++/44157
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / pr32126.C
1 // { dg-options "-std=c++0x" }
2 template<typename...> struct A;
3
4 template<typename...T> struct A<T> // { dg-error "not expanded|T|" }
5 {
6  static int i;
7 };
8
9 A<char> a; // { dg-error "incomplete" }
10 A<int> b; // { dg-error "incomplete" }