blob: 8d70c4517d816b3278a85d174453a58a2cdf04e1 [file] [log] [blame]
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00001// RUN: clang-cc -fsyntax-only -code-completion-dump=1 %s -o - | FileCheck -check-prefix=CC1 %s &&
2// RUN: true
3
4namespace N4 {
5 namespace N3 { }
6}
7
8class N3;
9
10namespace N2 {
11 namespace I1 { }
12 namespace I4 = I1;
13 namespace I5 { }
14 namespace I1 { }
15
16 // CHECK-CC1: I1 : 1
17 // CHECK-CC1: I4 : 1
18 // CHECK-CC1: I5 : 1
19 // CHECK-CC1: N2 : 2
20 // CHECK-NEXT-CC1: N4 : 2
21 namespace New =
22