FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb16.C
blob5dc259d28221d3048ad5cff0d4a57874fa02fa26
1 // Build don't link:
2 template<class T>
3 struct A {
4     typedef T T1;
5 };
7 template<class T>
8 struct B : T::T1 {           // insert `typename' before T::T1
9 };
11 struct C { };
13 B<A<C> > z;