OSDN Git Service

PR c++/36628
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / vt-35243.C
1 // { dg-options "-std=c++0x" }
2 struct A {};
3
4 template<typename... T> struct B : T...
5 {
6   B() : T(x)... {} // { dg-error "not declared" }
7 };
8
9 B<A> b;