blob: 0c8503ed2ee4aff626349b33ee4e4cc019f7748e [file] [log] [blame]
John McCall260611a2012-06-20 06:18:46 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
2// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
Fariborz Jahanian86f938b2009-02-21 18:23:24 +00003@class NSObject;
4
5@interface Foo {
6@public
7 __weak NSObject *nsobject;
8}
9@end
10
11@implementation Foo @end