Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / cpp0x / pr32126.C
blobc525cca684b16cd377c7e15944cf642a6c75f906
1 // { dg-options "-std=c++0x" }
2 template<typename...> struct A;
4 template<typename...T> struct A<T> // { dg-error "not expanded|T|" }
6  static int i;
7 };
9 A<char> a; // { dg-error "incomplete" }
10 A<int> b; // { dg-error "incomplete" }