[lld][WebAssembly] Reinstate mistakenly disabled test. NFC
[llvm-project.git] / clang / test / Parser / missing-end-2.m
blobe89f28eb247b2123aa765cc70829fce3be8b4bbd
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // rdar: //7824372
4 @interface A // expected-note {{class started here}}
5 -(void) im0;
7 @implementation A // expected-error {{missing '@end'}}
8 @end
10 @interface B { // expected-note {{class started here}}
13 @implementation B // expected-error {{missing '@end'}}
14 @end
16 @interface C // expected-note 2 {{class started here}}
17 @property int P;
19 @implementation C // expected-error 2 {{missing '@end'}}