forked from OSchip/llvm-project
19 lines
451 B
Objective-C
19 lines
451 B
Objective-C
// RUN: clang-cc -triple x86_64-apple-darwin10 -emit-llvm -o %t %s
|
|
// RUN: grep '@"OBJC_IVAR_$_XCOrganizerDeviceNodeInfo.viewController"' %t
|
|
|
|
@interface XCOrganizerNodeInfo
|
|
@property (readonly, retain) id viewController;
|
|
@end
|
|
|
|
@interface XCOrganizerDeviceNodeInfo : XCOrganizerNodeInfo
|
|
@end
|
|
|
|
@interface XCOrganizerDeviceNodeInfo()
|
|
@property (retain) id viewController;
|
|
@end
|
|
|
|
@implementation XCOrganizerDeviceNodeInfo
|
|
@synthesize viewController;
|
|
@end
|
|
|