PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / type1.C
blob0191ae55dfc5fa81198e96f11bbe9717403621d2
1 // Test for helpful error messages on invalid nested-name-specifiers.
3 struct A {
4   template <class T> struct B { static int c; };
5 };
7 int A::B::c;                    // { dg-error "arguments" }
8 int A::C::d;                    // { dg-error "declared" }