blob: 8a421122b0a6c143aae148621e03d7630ad50daa [file] [log] [blame]
Douglas Gregor49f40bd2009-09-18 19:03:04 +00001namespace N3 {
2}
3
4namespace N2 {
5 namespace I1 { }
6 namespace I4 = I1;
7 namespace I5 { }
8 namespace I1 { }
9
Douglas Gregorb657f112009-09-22 21:11:38 +000010 namespace
Daniel Dunbara5728872009-12-15 20:14:24 +000011 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:10:12 %s -o - | FileCheck -check-prefix=CC1 %s
Douglas Gregor49f40bd2009-09-18 19:03:04 +000012 // CHECK-CC1: I1 : 0
Douglas Gregor119fa682009-09-24 22:57:42 +000013 // CHECK-CC1-NEXT: I5 : 0
Douglas Gregorb657f112009-09-22 21:11:38 +000014