mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
10 lines
184 B
Objective-C
10 lines
184 B
Objective-C
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
|
|
@class NSObject;
|
|
|
|
@interface Foo {
|
|
@public
|
|
__weak NSObject *nsobject;
|
|
}
|
|
@end
|
|
|
|
@implementation Foo @end
|