From: Dmitri Gribenko Date: Tue, 15 Jan 2013 18:29:04 +0000 (+0000) Subject: Add a test for -Wsemicolon-before-method-body fixit X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef8e498b3abfc42968fa0749835e155c5ceb9685;p=clang Add a test for -Wsemicolon-before-method-body fixit git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172545 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Parser/warn-semicolon-before-method-body.m b/test/Parser/warn-semicolon-before-method-body.m new file mode 100644 index 0000000000..be408ebd31 --- /dev/null +++ b/test/Parser/warn-semicolon-before-method-body.m @@ -0,0 +1,22 @@ +// RUN: %clang_cc1 -fsyntax-only -Wsemicolon-before-method-body -verify %s +// RUN: %clang_cc1 -fsyntax-only -Wsemicolon-before-method-body -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s + +// Allow optional semicolon in objc method definiton after method prototype, +// warn about it and suggest a fixit. + +@interface NSObject +@end + +@interface C : NSObject +- (int)z; +@end + +@implementation C +- (int)z; // expected-warning {{semicolon before method body is ignored}} +{ + return 0; +} +@end + +// CHECK: fix-it:"{{.*}}":{15:9-15:10}:"" +