Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / cpp0x / vt-34753.C
blob15eaebebc8832428a7690e51fb31bc0447aa00f6
1 // { dg-options "-std=c++0x" }
2 template<typename... T> struct A
4   template<T> struct B {}; // { dg-error "not expanded|T" }
5 };
7 A<int>::B<0> b;
9 template<typename... T> struct B
11   template<T> B(); // { dg-error "not expanded|T" }
14 B<int> c;