brintos

brintos / llvm-project-archived public Read only

0
0
Text · 349 B · 0c8503e Raw
12 lines · plain
1// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s2// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s3@class NSObject;4 5@interface Foo  {6@public7  __weak NSObject *nsobject;8}9@end10 11@implementation Foo @end12