xref: /llvm-project/clang/test/CodeCompletion/namespace.cpp (revision 9fb4bf4d57b01933f50ac1cdd8eddf9ec7005412)
1 namespace N3 {
2 }
3 
4 namespace N2 {
5   namespace I1 { }
6   namespace I4 = I1;
7   namespace I5 { }
8   namespace I1 { }
9 
10   namespace
11   // RUN: clang-cc -fsyntax-only -code-completion-at=%s:10:12 %s -o - | FileCheck -check-prefix=CC1 %s &&
12   // CHECK-CC1: I1 : 0
13   // CHECK-CC1-NEXT: I5 : 0
14   // RUN: true
15 
16