blob: d4ed639f8a059004f84282fb738748890b21d08d [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
11 // 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