f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
22 lines
533 B
Objective-C
22 lines
533 B
Objective-C
// 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}:""
|
|
|