Daily bump.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / using32.C
blobcc0e96ca6b18381ba2bb16390eb0ab3af623c745
1 // { dg-do compile }
3 struct T { struct type {}; };
4 struct T2 : T { using T::type; };
5 struct T3 : T2
7   struct type {};
8   type t;
9 };