xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/objc2-retain-codegen.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc-only -emit-llvm -o %t %s
2// 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
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
14