forked from OSchip/llvm-project
28 lines
443 B
Objective-C
28 lines
443 B
Objective-C
// RUN: clang-cc -triple x86_64-apple-darwin10 -emit-llvm -o %t %s
|
|
|
|
@interface I
|
|
{
|
|
}
|
|
@property int IP;
|
|
@end
|
|
|
|
@implementation I
|
|
@synthesize IP;
|
|
- (int) Meth {
|
|
return IP;
|
|
}
|
|
@end
|
|
|
|
// Test for synthesis of ivar for a property
|
|
// declared in continuation class.
|
|
@interface OrganizerViolatorView
|
|
@end
|
|
|
|
@interface OrganizerViolatorView()
|
|
@property (retain) id bindingInfo;
|
|
@end
|
|
|
|
@implementation OrganizerViolatorView
|
|
@synthesize bindingInfo;
|
|
@end
|