]> granicus.if.org Git - clang/commitdiff
Fix test containing backslash and newline separated by space
authorAlp Toker <alp@nuanti.com>
Sat, 14 Dec 2013 23:32:27 +0000 (23:32 +0000)
committerAlp Toker <alp@nuanti.com>
Sat, 14 Dec 2013 23:32:27 +0000 (23:32 +0000)
This was silently accepted by clang without warning due to a lexer bug.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@197330 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaObjC/forward-protocol-incomplete-impl-warn.m

index 94a516adf9b293502f3ed506d4fe4745b07e2f9c..c235e32316a95acf0060ed9f6631eef08c3c6f05 100644 (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