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
blob943e05322d253899b04fe332c3f44c7103fcf967
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 // PR8430
5 namespace N {
6 class A { };
9 namespace M { }
11 using namespace M;
13 namespace N {
14 namespace M {
18 namespace M {
19 namespace N {
23 namespace N {
24 A *getA();