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 | |
Fariborz Jahanian | 0a9217f | 2009-04-10 22:42:54 +0000 | [diff] [blame] | 15 | @interface PVSelectionOverlayView2 |
| 16 | { |
| 17 | id __weak _selectionRect; |
| 18 | } |
| 19 | |
| 20 | @property(assign) id selectionRect; |
| 21 | |
| 22 | @end |
| 23 | |
| 24 | @implementation PVSelectionOverlayView2 |
| 25 | |
| 26 | @synthesize selectionRect = _selectionRect; |
| 27 | @end |
| 28 | |