Add a missing '[' to the tests from r305719

This clarifies the tests as the missing ']' is important, and not the '['.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@305804 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alex Lorenz 2017-06-20 16:16:11 +00:00
parent d77a5c3933
commit 026fbae01b
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
@implementation ClassB // expected-note {{implementation started here}}
- (void) method:(ClassA *)mgr { // expected-note {{to match this '{'}}
mgr fileExistsAtPath:0
[mgr fileExistsAtPath:0
} // expected-error {{expected ']'}}
@implementation ClassC // \

View File

@ -13,7 +13,7 @@
@implementation ClassB // expected-note {{implementation started here}}
- (void) method:(ClassA *)mgr { // expected-note {{to match this '{'}}
mgr fileExistsAtPath:0
[mgr fileExistsAtPath:0
} // expected-error {{expected ']'}}
@interface ClassC // \