blob: e09a14b4cb465c23163012ed2fffaded89610b0d [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001namespace 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:12:4 %s -o - | FileCheck -check-prefix=CC1 %s
14// CHECK-CC1: A
15// CHECK-CC1: B
16// CHECK-CC1: M
17