зеркало из https://github.com/microsoft/clang-1.git
19 строки
452 B
Mathematica
19 строки
452 B
Mathematica
|
// 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
|
||
|
|