PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / pr84789.C
blob63b9832fecf885f233d4647b60f165e81bc240c1
1 // { dg-do compile }
3 struct A
5   typedef int I;
6 };
8 template<typename> struct B : A {};
10 template<typename T> struct C : B<T>
12   B<T>::A::I::I i; // { dg-error "not a class type|does not name a type|typename" }