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
/
koenig4.C
blob
49fa5eaa653434a9fb5cdcf5e6e4a1ed6d2cf005
1
// { dg-do compile }
2
3
// Copyright (C) 2004 Free Software Foundation, Inc.
4
// Contributed by Nathan Sidwell 5 Oct 2004 <nathan@codesourcery.com>
5
6
// Origin: Wolfgang Bangerth <bangerth@dealii.org>
7
// Incorrect koenig lookup
8
9
struct A {};
10
11
struct B {
12
static void foo();
13
static void bar(const A &);
14
};
15
16
void bar(const A &){}
17
18
void B::foo () {
19
A a;
20
bar (a);
21
}