Clang Project

clang_source_code/test/CodeCompletion/namespace.cpp
1namespace N3 {
2}
3
4namespace N2 {
5  namespace I1 { }
6  namespace I4 = I1;
7  namespace I5 { }
8  namespace I1 { }
9  
10  namespace 
11  // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:10:13 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
12  // CHECK-CC1: I1
13  // CHECK-CC1-NEXT: I5
14  
15