2013-04-11 05:10:39 +08:00
|
|
|
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
|
2009-04-02 07:23:53 +08:00
|
|
|
|
2012-09-12 18:45:52 +08:00
|
|
|
// PR13820
|
|
|
|
// REQUIRES: LP64
|
|
|
|
|
2009-04-02 07:23:53 +08:00
|
|
|
@interface XCOrganizerNodeInfo
|
|
|
|
@property (readonly, retain) id viewController;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface XCOrganizerDeviceNodeInfo : XCOrganizerNodeInfo
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface XCOrganizerDeviceNodeInfo()
|
|
|
|
@property (retain) id viewController;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation XCOrganizerDeviceNodeInfo
|
|
|
|
@synthesize viewController;
|
2013-04-11 05:10:39 +08:00
|
|
|
// CHECK: @"OBJC_IVAR_$_XCOrganizerDeviceNodeInfo.viewController"
|
2009-04-02 07:23:53 +08:00
|
|
|
@end
|
|
|
|
|