blob: 7646f707bf76192580263a255cd8184885c87cb3 [file] [log] [blame]
Eli Friedman84ae5092009-04-01 02:55:21 +00001// RUN: clang-cc -triple x86_64-apple-darwin10 -emit-llvm -o %t %s
Fariborz Jahanian63a224a2009-03-31 18:11:23 +00002
3@interface I
4{
5}
6@property int IP;
7@end
8
9@implementation I
10@synthesize IP;
11- (int) Meth {
12 return IP;
13}
14@end
Fariborz Jahanian78be1652009-04-01 19:37:34 +000015
16// Test for synthesis of ivar for a property
17// declared in continuation class.
18@interface OrganizerViolatorView
19@end
20
21@interface OrganizerViolatorView()
22@property (retain) id bindingInfo;
23@end
24
25@implementation OrganizerViolatorView
26@synthesize bindingInfo;
27@end