aboutsummaryrefslogtreecommitdiff
path: root/test/Parser/warn-semicolon-before-method-body.m
blob: abdf9f2b02ffd1e46cfdbd62e2f3bc30b343d91f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 definition 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}:""