1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc-only -emit-llvm -o %t %s 2*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -x objective-c++ -triple x86_64-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc-only -emit-llvm -o %t %s 3*f4a2713aSLionel Sambuc 4*f4a2713aSLionel Sambuc@interface I0 { 5*f4a2713aSLionel Sambuc I0 *_f0; 6*f4a2713aSLionel Sambuc} 7*f4a2713aSLionel Sambuc@property (retain) id p0; 8*f4a2713aSLionel Sambuc@end 9*f4a2713aSLionel Sambuc 10*f4a2713aSLionel Sambuc@implementation I0 11*f4a2713aSLionel Sambuc @synthesize p0 = _f0; 12*f4a2713aSLionel Sambuc@end 13*f4a2713aSLionel Sambuc 14