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
/
koenig3.C
blob
c5dedbe708e0ef77e7f19372fe0453a961dbd5c2
1
extern "C" void abort ();
2
3
struct S {
4
};
5
void f(S, int) { abort(); }
6
void f(S, double) {}
7
8
S s;
9
10
int main() {
11
extern void f(S, int);
12
f(s, 3.0);
13
}