2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / lookup20.C
blobff23521590ae27a8114a48a39bb8828c4926bb4f
1 // { dg-do assemble  }
2 // Bug: typename_sub2 returned the type, so we tried to look up "A" in B.
4 struct A { struct A1 { }; };
6 struct B {
7   typedef A Q;
8 };
10 struct C: public B::Q::A1 { };