brintos

brintos / llvm-project-archived public Read only

0
0
Text · 521 B · 95fbb2b Raw
17 lines · plain
1// RUN: %clang_cc1  -triple x86_64-apple-darwin11 -fobjc-runtime-has-weak -fobjc-arc -fsyntax-only -verify -Wno-objc-root-class %s2// expected-no-diagnostics3 4@interface PP5@property (readonly) id ReadOnlyPropertyNoBackingIvar;6@property (readonly) id ReadOnlyProperty;7@property (readonly) id ReadOnlyPropertyX;8@end9 10@implementation PP {11__weak id _ReadOnlyProperty;12}13@synthesize ReadOnlyPropertyNoBackingIvar;14@synthesize ReadOnlyProperty = _ReadOnlyProperty;15@synthesize ReadOnlyPropertyX = _ReadOnlyPropertyX;16@end17