URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [nested1.C] - Rev 718
Go to most recent revision | Compare with Previous | Blame | View Log
// Build don't link:
//
// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Raymond <raymond@magma.magma-da.com>.
//
// PR c++/47 The parser failed to resolve 'B' in the return type of
// A::C::D::foo.
class A {
public:
class B;
class C;
};
class A::B {
};
class A::C {
class D;
};
class A::C::D {
public:
B* foo();
};
Go to most recent revision | Compare with Previous | Blame | View Log