blob: ecd848039a87fb54510a5cec2648e7f23379b19d [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 Gregorab0b4f12010-01-13 23:24:38 +000012 // CHECK-CC1: I1
13 // CHECK-CC1-NEXT: I5
Douglas Gregorb657f112009-09-22 21:11:38 +000014