2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic126.C
blob513c7e54a072172b20e81bc38f14e9c61924e723
1 // PR c++/47220
2 // { dg-do compile { target c++11 } }
4 template < typename ... > struct A;
6 struct B : A <                  // { dg-error "invalid" }
8 };