xref: /minix3/external/bsd/llvm/dist/clang/test/CodeCompletion/namespace.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc namespace N3 {
2*f4a2713aSLionel Sambuc }
3*f4a2713aSLionel Sambuc 
4*f4a2713aSLionel Sambuc namespace N2 {
5*f4a2713aSLionel Sambuc   namespace I1 { }
6*f4a2713aSLionel Sambuc   namespace I4 = I1;
7*f4a2713aSLionel Sambuc   namespace I5 { }
8*f4a2713aSLionel Sambuc   namespace I1 { }
9*f4a2713aSLionel Sambuc 
10*f4a2713aSLionel Sambuc   namespace
11*f4a2713aSLionel Sambuc   // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:10:12 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
12*f4a2713aSLionel Sambuc   // CHECK-CC1: I1
13*f4a2713aSLionel Sambuc   // CHECK-CC1-NEXT: I5
14*f4a2713aSLionel Sambuc 
15