Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeCompletion / namespace-alias.cpp
blobd2894dfd985335bc79a86e056bb631304b2da2a9
1 namespace N4 {
2 namespace N3 { }
5 class N3;
7 namespace N2 {
8 namespace I1 { }
9 namespace I4 = I1;
10 namespace I5 { }
11 namespace I1 { }
13 namespace New =
14 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-1):18 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
15 // CHECK-CC1: I1
16 // CHECK-CC1: I4
17 // CHECK-CC1: I5
18 // CHECK-CC1: N2
19 // CHECK-CC1-NEXT: N4