repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CXX
/
dcl.dcl
/
basic.namespace
/
namespace.def
/
p2.cpp
blob
943e05322d253899b04fe332c3f44c7103fcf967
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// expected-no-diagnostics
3
4
// PR8430
5
namespace
N
{
6
class
A
{ };
7
}
8
9
namespace
M
{ }
10
11
using namespace
M
;
12
13
namespace
N
{
14
namespace
M
{
15
}
16
}
17
18
namespace
M
{
19
namespace
N
{
20
}
21
}
22
23
namespace
N
{
24
A
*
getA
();
25
}