Fix test containing backslash and newline separated by space

This was silently accepted by clang without warning due to a lexer bug.

llvm-svn: 197330
This commit is contained in:
Alp Toker 2013-12-14 23:32:27 +00:00
parent c26b68a94f
commit 099b0d3741
1 changed files with 1 additions and 1 deletions

View File

@ -15,6 +15,6 @@
@interface IBImageCatalogDocument : NSObject <DVTInvalidation>
@end
@implementation IBImageCatalogDocument // expected-warning {{auto property synthesis will not synthesize property 'Prop' declared in protocol 'DVTInvalidation'}} \
@implementation IBImageCatalogDocument // expected-warning {{auto property synthesis will not synthesize property 'Prop' declared in protocol 'DVTInvalidation'}} \
// expected-warning {{method 'invalidate' in protocol 'DVTInvalidation' not implemented}}
@end