Daniel Dunbar | 02022f4 | 2009-04-10 21:23:20 +0000 | [diff] [blame^] | 1 | // RUN: clang-cc -triple i386-apple-darwin9 -fsyntax-only -verify %s |
Fariborz Jahanian | c8bafd7 | 2009-04-07 21:25:06 +0000 | [diff] [blame] | 2 | |
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 |