repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
inline-ns3.C
blob
7e24e806e7c811b8faf99a90522f7db30b3eabca
1
// { dg-do compile { target c++11 } }
2
3
namespace C
4
{
5
void f();
6
}
7
8
namespace B
9
{
10
using namespace C;
11
12
inline namespace B1
13
{
14
void f();
15
}
16
}
17
18
namespace A
19
{
20
using namespace B;
21
}
22
23
int main()
24
{
25
A::f();
26
}