URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [friend9.C] - Rev 822
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/25492
class Base {
public:
class Nested {};
};
class Derived:public Base {
public:
class Nested {
public:
void m();
};
class AnotherNested {
friend class Nested;
AnotherNested() {}
};
};
void Derived::Nested::m() {
Derived::AnotherNested instance;
}
Go to most recent revision | Compare with Previous | Blame | View Log