blob: e25b737e452f1eb36d3fd90c1405df583899d2fb [file] [log] [blame]
Fariborz Jahaniane4fd6402009-04-01 23:23:53 +00001// RUN: clang-cc -triple x86_64-apple-darwin10 -emit-llvm -o %t %s &&
2// RUN: grep '_OBJC_IVAR_$_XCOrganizerDeviceNodeInfo.viewController' %t
3
4@interface XCOrganizerNodeInfo
5@property (readonly, retain) id viewController;
6@end
7
8@interface XCOrganizerDeviceNodeInfo : XCOrganizerNodeInfo
9@end
10
11@interface XCOrganizerDeviceNodeInfo()
12@property (retain) id viewController;
13@end
14
15@implementation XCOrganizerDeviceNodeInfo
16@synthesize viewController;
17@end
18