opnsense-src/test/CodeGenObjC/objc2-weak-ivar.m

11 lines
184 B
Mathematica
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
2009-06-02 13:58:47 -04:00
@class NSObject;
@interface Foo {
@public
__weak NSObject *nsobject;
}
@end
@implementation Foo @end