diff options
Diffstat (limited to 'test/CodeCompletion/namespace-alias.cpp')
-rw-r--r-- | test/CodeCompletion/namespace-alias.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/test/CodeCompletion/namespace-alias.cpp b/test/CodeCompletion/namespace-alias.cpp index 8d70c4517d..cae3d561d1 100644 --- a/test/CodeCompletion/namespace-alias.cpp +++ b/test/CodeCompletion/namespace-alias.cpp @@ -1,6 +1,3 @@ -// RUN: clang-cc -fsyntax-only -code-completion-dump=1 %s -o - | FileCheck -check-prefix=CC1 %s && -// RUN: true - namespace N4 { namespace N3 { } } @@ -13,10 +10,12 @@ namespace N2 { namespace I5 { } namespace I1 { } + namespace New = + // RUN: clang-cc -fsyntax-only -code-completion-at=%s:13:18 %s -o - | FileCheck -check-prefix=CC1 %s && // CHECK-CC1: I1 : 1 // CHECK-CC1: I4 : 1 // CHECK-CC1: I5 : 1 // CHECK-CC1: N2 : 2 // CHECK-NEXT-CC1: N4 : 2 - namespace New = - + // RUN: true +
\ No newline at end of file |