clang-1/test/SemaObjC/synthesized-ivar.m

14 строки
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