brintos

brintos / llvm-project-archived public Read only

0
0
Text · 459 B · 393ec36 Raw
22 lines · plain
1// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s2 3// PR138204// REQUIRES: LP645 6@interface XCOrganizerNodeInfo7@property (readonly, retain) id viewController;8@end9 10@interface XCOrganizerDeviceNodeInfo : XCOrganizerNodeInfo11@end12 13@interface XCOrganizerDeviceNodeInfo()14@property (retain) id viewController;15@end16 17@implementation XCOrganizerDeviceNodeInfo18@synthesize viewController;19// CHECK: @"OBJC_IVAR_$_XCOrganizerDeviceNodeInfo.viewController"20@end21 22