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++/67273
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
friend6.C
blob
e3dafb1d6b55bf55796a03c828edfbeb036cf93b
1
// { dg-do compile }
2
3
// Origin: Matt Austern <austern@apple.com>
4
5
// PR c++/19258: Wrong lookup scope for friend defined in class.
6
7
class X {
8
template<class T> friend int ff(T*, int y=anX.x) { return y; }
9
int f() { return ff(&anX); }
10
11
static X anX;
12
int x;
13
};
14
15
X dummy;