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
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
inline-ns7.C
blob
16240afc21c8db0a25d5ae65005f5e02d4bc4674
1
// PR c++/13594
2
3
// { dg-options "" }
4
// { dg-do compile }
5
6
namespace foo {
7
inline namespace foo_impl {
8
class T; // { dg-message "T" }
9
}
10
}
11
namespace bar {
12
inline namespace bar_impl {
13
class T; // { dg-message "T" }
14
}
15
using namespace foo;
16
}
17
namespace baz {
18
using namespace foo;
19
using namespace bar;
20
}
21
22
foo::T *t1;
23
bar::T *t2;
24
baz::T *t3; // { dg-error "(ambiguous|does not name a type)" }