blob: 305629b43ce676683614f04d1bcc2e1ba03743a1 [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -fobjc-nonfragile-abi -verify %s
@interface I
{
}
@property int IP;
@end
@implementation I
@synthesize IP;
- (int) Meth {
return IP;
}
@end