diff options
Diffstat (limited to 'test/CodeCompletion/enum-switch-case.cpp')
-rw-r--r-- | test/CodeCompletion/enum-switch-case.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/CodeCompletion/enum-switch-case.cpp b/test/CodeCompletion/enum-switch-case.cpp index 7a388fc..3a010a8 100644 --- a/test/CodeCompletion/enum-switch-case.cpp +++ b/test/CodeCompletion/enum-switch-case.cpp @@ -19,11 +19,10 @@ void test(enum N::Color color) { break; case - // RUN: clang-cc -fsyntax-only -code-completion-at=%s:21:8 %s -o - | FileCheck -check-prefix=CC1 %s && + // RUN: clang-cc -fsyntax-only -code-completion-at=%s:21:8 %s -o - | FileCheck -check-prefix=CC1 %s // CHECK-CC1: Blue : 0 : N::Blue // CHECK-CC1-NEXT: Green : 0 : N::Green // CHECK-CC1-NEXT: Indigo : 0 : N::Indigo // CHECK-CC1-NEXT: Orange : 0 : N::Orange // CHECK-CC1-NEXT: Violet : 0 : N::Violet - // RUN: true |