blob: bd370ad9cf9fc3e314688d698d03e5c8b9a06717 [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 Dunbar4fcfde42009-11-08 01:45:36 +000011 // RUN: clang-cc -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 // RUN: true
15