blob: 2a58dd8ca057cfd324ec808fbea524eb739b152d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (C) 2004 Free Software Foundation
// Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
// { dg-do compile }
// Friend name lookup in class defined outside its namespace
namespace A {
class B;
class C;
}
class A::B {
friend class C;
typedef int i;
};
class A::C {
A::B::i j;
};
|