1// RUN: clang-cc -triple x86_64-unknown-unknown -fobjc-gc-only -emit-llvm -o %t %s 2 3@interface I0 { 4 I0 *_f0; 5} 6@property (retain) id p0; 7@end 8 9@implementation I0 10 @synthesize p0 = _f0; 11@end 12 13