blob: 03a881f589a62fc84cc458a27e22899efd6857a7 [file] [log] [blame]
Daniel Dunbar02022f42009-04-10 21:23:20 +00001// RUN: clang-cc -triple i386-apple-darwin9 -fsyntax-only -verify %s
Fariborz Jahanianc8bafd72009-04-07 21:25:06 +00002
3@interface Subtask
4{
5 id _delegate;
6}
7@property(nonatomic,readwrite,assign) id __weak delegate;
8@end
9
10@implementation Subtask
11@synthesize delegate = _delegate;
12@end
13
14