blob: 45116621474c31da19fd7001e51ac7dba0a6f87e [file] [log] [blame]
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00001namespace 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
Douglas Gregorea9b03e2009-09-22 21:11:38 +000013 namespace New =
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +000014 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:13:18 %s -o - | FileCheck -check-prefix=CC1 %s
Douglas Gregor7e90c6d2009-09-18 19:03:04 +000015 // CHECK-CC1: I1 : 1
16 // CHECK-CC1: I4 : 1
17 // CHECK-CC1: I5 : 1
Douglas Gregor5bf52692009-09-22 23:15:58 +000018 // CHECK-CC1: N2 : 3
Douglas Gregor9fb4bf42009-09-24 22:57:42 +000019 // CHECK-CC1-NEXT: N4 : 3
Douglas Gregor9fb4bf42009-09-24 22:57:42 +000020