blob: 9f6620619ecdbdd967780a4a63b18971828fb743 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fobjc-gc-only -emit-llvm -o %t %s
Fariborz Jahanian27b7aa02010-05-20 18:22:28 +00002// RUN: %clang_cc1 -x objective-c++ -triple x86_64-unknown-unknown -fobjc-gc-only -emit-llvm -o %t %s
Fariborz Jahanianed1d29d2009-03-03 18:49:40 +00003
4@interface I0 {
5 I0 *_f0;
6}
7@property (retain) id p0;
8@end
9
10@implementation I0
11 @synthesize p0 = _f0;
12@end
13