diff options
Diffstat (limited to 'clang/test/CodeCompletion/objc-expr.m')
-rw-r--r-- | clang/test/CodeCompletion/objc-expr.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeCompletion/objc-expr.m b/clang/test/CodeCompletion/objc-expr.m index 82ce5381fd2..b59586ab96c 100644 --- a/clang/test/CodeCompletion/objc-expr.m +++ b/clang/test/CodeCompletion/objc-expr.m @@ -6,12 +6,12 @@ id testCompleteAfterAtSign() { // RUN: %clang_cc1 -fsyntax-only -code-completion-patterns -code-completion-at=%s:4:11 %s -fno-const-strings -o - | FileCheck -check-prefix=AT %s // CHECK-AT: COMPLETION: Pattern : [#NSString *#]"<#string#>" -// CHECK-AT: COMPLETION: Pattern : [#id#]( <#expression#> ) -// CHECK-AT: COMPLETION: Pattern : [#NSArray *#][ <#objects, ...#> ] +// CHECK-AT: COMPLETION: Pattern : [#id#](<#expression#>) +// CHECK-AT: COMPLETION: Pattern : [#NSArray *#][<#objects, ...#>] // CHECK-AT: COMPLETION: Pattern : [#char[]#]encode(<#type-name#>) // CHECK-AT: COMPLETION: Pattern : [#Protocol *#]protocol(<#protocol-name#>) // CHECK-AT: COMPLETION: Pattern : [#SEL#]selector(<#selector#>) -// CHECK-AT: COMPLETION: Pattern : [#NSDictionary *#]{ <#key#> : <#object, ...#> } +// CHECK-AT: COMPLETION: Pattern : [#NSDictionary *#]{<#key#> : <#object, ...#>} // RUN: %clang_cc1 -fsyntax-only -code-completion-patterns -code-completion-at=%s:4:11 %s -fconst-strings -o - | FileCheck -check-prefix=CONST-STRINGS %s // CHECK-CONST-STRINGS: COMPLETION: Pattern : [#const char[]#]encode(<#type-name#>) |