OSDN Git Service

2009-10-05 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / lookup / friend9.C
1 // PR c++/25492
2
3 class Base {
4 public:
5   class Nested {};
6 };
7
8 class Derived:public Base {
9 public:
10   class Nested {
11   public:
12     void m();
13   };
14   class AnotherNested {
15     friend class Nested;
16     AnotherNested() {}
17   };
18 };
19
20 void Derived::Nested::m() {
21   Derived::AnotherNested instance;
22
23 }