hanchenye-llvm-project/clang/test/SemaObjC/synthesized-ivar.m

14 lines
177 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -fobjc-nonfragile-abi -verify %s
@interface I
{
}
@property int IP;
@end
@implementation I
@synthesize IP;
- (int) Meth {
return IP;
}
@end