blob: bd4aef413799606175c13c58f7fa63a4fc20a384 [file] [log] [blame]
Douglas Gregor49f40bd2009-09-18 19:03:04 +00001namespace N4 {
2 namespace N3 { }
3}
4
5class N3;
6
7namespace N2 {
8 namespace I1 { }
9 namespace I4 = I1;
10 namespace I5 { }
11 namespace I1 { }
12
Douglas Gregorb657f112009-09-22 21:11:38 +000013 namespace New =
Tim Northover931a4fe2013-08-12 12:51:05 +000014 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:13:18 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
Douglas Gregorab0b4f12010-01-13 23:24:38 +000015 // CHECK-CC1: I1
16 // CHECK-CC1: I4
17 // CHECK-CC1: I5
18 // CHECK-CC1: N2
19 // CHECK-CC1-NEXT: N4
Douglas Gregor119fa682009-09-24 22:57:42 +000020