blob: 592c1f05474b4839289da3f59b26631cecec28a1 [file] [log] [blame]
Chris Lattner7f48c6e2009-04-07 06:05:28 +00001// RUN: clang-cc -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