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
* ru.po: Update.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
friend1.C
blob
47fe0556519e8072060ef5e675c1235323ce6964
1
// { dg-do compile }
2
3
// Origin: <matz@suse.de>
4
5
// PR c++/9970: In-class friend function definition after
6
// declaration lexical scope problem.
7
8
void f();
9
struct X
10
{
11
enum { k = 1 };
12
friend void f() {
13
char a[k];
14
}
15
};