repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR c++/15745
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
hidden-class6.C
blob
96425353911f27761dfb6d72c81efdc11f356358
1
// { dg-do compile }
2
3
// Origin: Jay Cox <jaycox@gimp.org>
4
5
// PR c++/1016: Name lookup for injected friend class
6
7
class B;
8
9
namespace N {
10
class A {
11
friend class B;
12
B* b;
13
};
14
}