[lld][WebAssembly] Reinstate mistakenly disabled test. NFC
[llvm-project.git] / clang / test / Parser / warn-semicolon-before-method-body.m
blobabdf9f2b02ffd1e46cfdbd62e2f3bc30b343d91f
1 // RUN: %clang_cc1 -fsyntax-only -Wsemicolon-before-method-body -verify %s
2 // RUN: %clang_cc1 -fsyntax-only -Wsemicolon-before-method-body -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
4 // Allow optional semicolon in objc method definition after method prototype,
5 // warn about it and suggest a fixit.
7 @interface NSObject
8 @end
10 @interface C : NSObject
11 - (int)z;
12 @end
14 @implementation C
15 - (int)z; // expected-warning {{semicolon before method body is ignored}}
17   return 0;
19 @end
21 // CHECK: fix-it:"{{.*}}":{15:9-15:10}:""