1 namespace N4 {
2   namespace N3 { }
3 }
4 
5 class N3;
6 
7 namespace N2 {
8   namespace I1 { }
9   namespace I4 = I1;
10   namespace I5 { }
11   namespace I1 { }
12 
13   void foo() {
14     using namespace
15     // RUN: clang-cc -fsyntax-only -code-completion-at=%s:14:20 %s -o - | FileCheck -check-prefix=CC1 %s &&
16     // CHECK-CC1: I1 : 2
17     // CHECK-CC1: I4 : 2
18     // CHECK-CC1: I5 : 2
19     // CHECK-CC1: N2 : 4
20     // CHECK-CC1-NEXT: N4 : 4
21     // RUN: true
22