blob: 134e3a976feb39da7e84f04f1afc1a530dfb2547 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -triple x86_64-unknown-unknown -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