xref: /aosp_15_r20/external/clang/test/CodeCompletion/nested-name-specifier.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 namespace N {
2   struct A { };
3   namespace M {
4     struct C { };
5   };
6 }
7 
8 namespace N {
9   struct B { };
10 }
11 
12 N::
13 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:12:4 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
14 // CHECK-CC1: A
15 // CHECK-CC1: B
16 // CHECK-CC1: M
17 
18