f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
17 lines
541 B
Objective-C
17 lines
541 B
Objective-C
// RUN: %clang_cc1 -triple x86_64-apple-darwin11 -fobjc-runtime-has-weak -fobjc-arc -fsyntax-only -verify -Wno-objc-root-class %s
|
|
// expected-no-diagnostics
|
|
// rdar:// 10558871
|
|
|
|
@interface PP
|
|
@property (readonly) id ReadOnlyPropertyNoBackingIvar;
|
|
@property (readonly) id ReadOnlyProperty;
|
|
@property (readonly) id ReadOnlyPropertyX;
|
|
@end
|
|
|
|
@implementation PP {
|
|
__weak id _ReadOnlyProperty;
|
|
}
|
|
@synthesize ReadOnlyPropertyNoBackingIvar;
|
|
@synthesize ReadOnlyProperty = _ReadOnlyProperty;
|
|
@synthesize ReadOnlyPropertyX = _ReadOnlyPropertyX;
|
|
@end
|