blob: cfe1e95952fecfc8adda9748f578d59b0269f421 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
Fariborz Jahanian86f938b2009-02-21 18:23:24 +00002@class NSObject;
3
4@interface Foo {
5@public
6 __weak NSObject *nsobject;
7}
8@end
9
10@implementation Foo @end