blob: c8988e278d11881b11b0210af9ac193dc3107b1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// 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();
};
|