18 lines · cpp
1namespace N {2 struct A { };3 namespace M { 4 struct C { };5 };6}7 8namespace N {9 struct B { };10}11 12N::13// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-1):4 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s14// CHECK-CC1: A15// CHECK-CC1: B16// CHECK-CC1: M17 18