URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [using35.C] - Rev 693
Compare with Previous | Blame | View Log
// { 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;}
};