blob: e09a14b4cb465c23163012ed2fffaded89610b0d [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 Dunbara5728872009-12-15 20:14:24 +000013// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:12:4 %s -o - | FileCheck -check-prefix=CC1 %s
Douglas Gregorab0b4f12010-01-13 23:24:38 +000014// CHECK-CC1: A
15// CHECK-CC1: B
16// CHECK-CC1: M
Douglas Gregorb657f112009-09-22 21:11:38 +000017