PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / error49.C
blob57789a79aa9c8eec623f7bd18c26e3603fca2572
1 // PR c++/40405
3 template<int, int> struct A
5   static int i;
6 };
8 template<int> int A<0,0>::i = 0; // { dg-error "" }
10 int j = A<0,0>::i;