1 | // RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s |
---|---|
2 | |
3 | // PR13820 |
4 | // REQUIRES: LP64 |
5 | |
6 | @interface XCOrganizerNodeInfo |
7 | @property (readonly, retain) id viewController; |
8 | @end |
9 | |
10 | @interface XCOrganizerDeviceNodeInfo : XCOrganizerNodeInfo |
11 | @end |
12 | |
13 | @interface XCOrganizerDeviceNodeInfo() |
14 | @property (retain) id viewController; |
15 | @end |
16 | |
17 | @implementation XCOrganizerDeviceNodeInfo |
18 | @synthesize viewController; |
19 | // CHECK: @"OBJC_IVAR_$_XCOrganizerDeviceNodeInfo.viewController" |
20 | @end |
21 | |
22 |