blob: 8da7c37d95e9d95825e81e653d9b6bff3f7625e8 [file] [log] [blame]
Douglas Gregor81b747b2009-09-17 21:32:03 +00001namespace N {
2 struct A { };
3 namespace M {
4 struct C { };
5 };
6}
7
8namespace N {
9 struct B { };
10}
11
Douglas Gregorb657f112009-09-22 21:11:38 +000012N::
Daniel Dunbar4fcfde42009-11-08 01:45:36 +000013// RUN: clang-cc -fsyntax-only -code-completion-at=%s:12:4 %s -o - | FileCheck -check-prefix=CC1 %s
Douglas Gregor81b747b2009-09-17 21:32:03 +000014// CHECK-CC1: A : 0
15// CHECK-CC1: B : 0
16// CHECK-CC1: M : 0
Douglas Gregorb657f112009-09-22 21:11:38 +000017