opnsense-src/test/CodeGenObjC/objc2-retain-codegen.m

13 lines
198 B
Mathematica
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fobjc-gc-only -emit-llvm -o %t %s
2009-06-02 13:58:47 -04:00
@interface I0 {
I0 *_f0;
}
@property (retain) id p0;
@end
@implementation I0
@synthesize p0 = _f0;
@end