blob: e7e82741d643b8f6206676423eada93db1f304e1 [file] [log] [blame]
// { dg-do compile }
struct A { typedef int type; };
struct B { typedef int type; };
struct C : B { using B::type; };
struct D : A, C
{
using C::type;
void f() { type t = 0;}
};