c++: robustify testcase [PR109752]
[official-gcc.git] / gcc / testsuite / g++.dg / parse / crash57.C
blobc6daf777eb9b5bce4252eff0b102320a5b501c02
1 // PR c++/46117
3 struct A
5   A (typename int); // { dg-error "before|declaration" }
6 };
8 struct B : A {};
10 B b;