blob: f418164b0246dace4df0c2fbed9615da13eaadc1 [file] [log] [blame]
Douglas Gregor81b747b2009-09-17 21:32:03 +00001// RUN: clang-cc -fsyntax-only -code-completion-dump=1 %s -o - | FileCheck -check-prefix=CC1 %s &&
2// RUN: true
3
4namespace N {
5 struct A { };
6 namespace M {
7 struct C { };
8 };
9}
10
11namespace N {
12 struct B { };
13}
14
15// CHECK-CC1: A : 0
16// CHECK-CC1: B : 0
17// CHECK-CC1: M : 0
18// CHECK-CC1: template : 0
19N::