PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / error-recovery4.C
blob1e52c6a6b3e944f4472a2d857d7f487dbfec02ac
1 // PR c++/77639
3 template <class, int, class, int> struct B {};
4 template <class T, int a, class U struct B<T, a, U, 1> {}; // { dg-error "" }
5 B<int, 2, char, 1> i;