PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / crash99.C
blob606d3e3049b2e034334066ceb0932104881c5dc0
1 // PR c++/34491
3 template<typename> struct A;
5 template<0> struct A<int> // { dg-error "expected|template|anonymous" }
7   static const int i = 0;
8 };
10 int n = A<int>::i; // { dg-error "incomplete type" }