repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
friend3.C
blob
2a58dd8ca057cfd324ec808fbea524eb739b152d
1
// Copyright (C) 2004 Free Software Foundation
2
// Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
3
// { dg-do compile }
4
5
// Friend name lookup in class defined outside its namespace
6
7
namespace A {
8
class B;
9
class C;
10
}
11
12
class A::B {
13
friend class C;
14
typedef int i;
15
};
16
17
class A::C {
18
A::B::i j;
19
};