f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
11 lines
349 B
Objective-C
11 lines
349 B
Objective-C
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
|
|
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
|
|
@class NSObject;
|
|
|
|
@interface Foo {
|
|
@public
|
|
__weak NSObject *nsobject;
|
|
}
|
|
@end
|
|
|
|
@implementation Foo @end
|