PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / instantiate9.C
blob33f1d6018a108a449dbb9eb3c3d562e4f0ae4a3d
1 /* PR c++/14622. The invalid explicit instantiation was not reported. */
2 /* { dg-do compile } */
3 template<class T>
4 class A
6   static T a;
7 };
9 template<class T>
10 T A<T>::a;
12 struct B {};
14 template B A<int>::a; /* { dg-error "does not match declared type" } */
15 template float A<float>::a;