repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
koenig2.C
blob
04f95258999c12ee71c9ab8c6f65ad133933e6bb
1
struct S
2
{
3
template <typename T> void operator() (T) {}
4
};
5
6
namespace N
7
{
8
S s;
9
struct A {} a;
10
}
11
12
using N::s;
13
14
void f () { s(N::a); }
15