2009-12-15 23:14:24 +03:00
|
|
|
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fsyntax-only -verify %s
|
2009-04-08 01:25:06 +04:00
|
|
|
|
|
|
|
@interface Subtask
|
|
|
|
{
|
|
|
|
id _delegate;
|
|
|
|
}
|
|
|
|
@property(nonatomic,readwrite,assign) id __weak delegate;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation Subtask
|
|
|
|
@synthesize delegate = _delegate;
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
2009-04-11 02:42:54 +04:00
|
|
|
@interface PVSelectionOverlayView2
|
|
|
|
{
|
|
|
|
id __weak _selectionRect;
|
|
|
|
}
|
|
|
|
|
|
|
|
@property(assign) id selectionRect;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation PVSelectionOverlayView2
|
|
|
|
|
|
|
|
@synthesize selectionRect = _selectionRect;
|
|
|
|
@end
|
|
|
|
|