blob: 8789635bd598c812c1b1a31c1a7ce9127e3f0298 [file] [log] [blame]
Douglas Gregor2436e712009-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 Gregorea9b03e2009-09-22 21:11:38 +000012N::
Tim Northover19ae1172013-08-12 12:51:05 +000013// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:12:4 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
Douglas Gregor52ce62f2010-01-13 23:24:38 +000014// CHECK-CC1: A
15// CHECK-CC1: B
16// CHECK-CC1: M
Douglas Gregorea9b03e2009-09-22 21:11:38 +000017