2013-04-30 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / using35.C
blobe7e82741d643b8f6206676423eada93db1f304e1
1 // { dg-do compile }
3 struct A { typedef int type; };
4 struct B { typedef int type; };
5 struct C : B { using B::type; };
7 struct D : A, C
9   using C::type;
10   void f() { type t = 0;}