blob: efbf996372851b094c748666072566a2143d07b8 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001namespace 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
13 namespace New =
14 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:13:18 %s -o - | FileCheck -check-prefix=CC1 %s
15 // CHECK-CC1: I1
16 // CHECK-CC1: I4
17 // CHECK-CC1: I5
18 // CHECK-CC1: N2
19 // CHECK-CC1-NEXT: N4
20