blob: b2872496246a4c71cd3941c85bf44a2c0e9375bb [file] [log] [blame]
Fariborz Jahanianed1d29d2009-03-03 18:49:40 +00001// RUN: clang -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