mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-14 03:29:57 +00:00
d4c5348a55
does not terminate with @end. // rdar: //7824372 llvm-svn: 117991
20 lines
313 B
Objective-C
20 lines
313 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// rdar: //7824372
|
|
|
|
@interface A
|
|
-(void) im0;
|
|
|
|
@implementation A // expected-error {{missing @end}}
|
|
@end
|
|
|
|
@interface B {
|
|
}
|
|
|
|
@implementation B // expected-error {{missing @end}}
|
|
@end
|
|
|
|
@interface C
|
|
@property int P;
|
|
|
|
@implementation C // expected-error 2 {{missing @end}}
|