diff options
Diffstat (limited to 'test/CodeCompletion')
-rw-r--r-- | test/CodeCompletion/enum-switch-case.c | 21 | ||||
-rw-r--r-- | test/CodeCompletion/functions.cpp | 2 |
2 files changed, 20 insertions, 3 deletions
diff --git a/test/CodeCompletion/enum-switch-case.c b/test/CodeCompletion/enum-switch-case.c index 082072600ffe..d5df37115222 100644 --- a/test/CodeCompletion/enum-switch-case.c +++ b/test/CodeCompletion/enum-switch-case.c @@ -18,11 +18,28 @@ void test(enum Color color) { case Green: break; - + } + + unsigned c2; + switch (c2) { + case + } + // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:19:10 %s -o - | FileCheck -check-prefix=CC1 %s // CHECK-CC1: Blue // CHECK-CC1-NEXT: Green // CHECK-CC1-NEXT: Indigo // CHECK-CC1-NEXT: Orange // CHECK-CC1-NEXT: Violet - + + // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:25:10 %s -o - | FileCheck -check-prefix=CC2 %s + // CHECK-CC2: COMPLETION: Blue : [#enum Color#]Blue + // CHECK-CC2-NEXT: COMPLETION: c2 : [#unsigned int#]c2 + // CHECK-CC2-NEXT: COMPLETION: color : [#enum Color#]color + // CHECK-CC2-NEXT: COMPLETION: Green : [#enum Color#]Green + // CHECK-CC2-NEXT: COMPLETION: Indigo : [#enum Color#]Indigo + // CHECK-CC2-NEXT: COMPLETION: Orange : [#enum Color#]Orange + // CHECK-CC2-NEXT: COMPLETION: Red : [#enum Color#]Red + // CHECK-CC2-NEXT: COMPLETION: Pattern : sizeof(<#expression-or-type#>) + // CHECK-CC2-NEXT: COMPLETION: Violet : [#enum Color#]Violet + // CHECK-CC2-NEXT: COMPLETION: Yellow : [#enum Color#]Yellow diff --git a/test/CodeCompletion/functions.cpp b/test/CodeCompletion/functions.cpp index 6838de36e846..fcab3dcbe120 100644 --- a/test/CodeCompletion/functions.cpp +++ b/test/CodeCompletion/functions.cpp @@ -5,4 +5,4 @@ void test() { :: // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:5:5 %s -o - | FileCheck -check-prefix=CC1 %s // CHECK-CC1: f(<#int i#>{#, <#int j#>{#, <#int k#>#}#}) - // CHECK-CC1: f(<#float x#>, <#float y#><#, ...#>) + // CHECK-CC1: f(<#float x#>, <#float y, ...#>) |