blob: ca8318d00fc219cf6a710f5792871cef8fb8f40a [file] [log] [blame]
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fsyntax-only -verify %s
@interface Subtask
{
id _delegate;
}
@property(nonatomic,readwrite,assign) id __weak delegate;
@end
@implementation Subtask
@synthesize delegate = _delegate;
@end
@interface PVSelectionOverlayView2
{
id __weak _selectionRect;
}
@property(assign) id selectionRect;
@end
@implementation PVSelectionOverlayView2
@synthesize selectionRect = _selectionRect;
@end