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
/
debug
/
using2.C
blob
94f0deae78c9b353869b5861d768e5a705888a1d
1
// PR c++/22489
2
3
namespace N { }
4
5
struct T
6
{
7
T () { }
8
};
9
10
void
11
bar ()
12
{
13
struct U : public T
14
{
15
void baz ()
16
{
17
using namespace N;
18
}
19
} u;
20
u.baz();
21
}