зеркало из https://github.com/microsoft/clang.git
91 строка
1.3 KiB
Objective-C
91 строка
1.3 KiB
Objective-C
// RUN: clang-cc -fsyntax-only -verify %s
|
|
|
|
@interface I0
|
|
@property(readonly) int x;
|
|
@property(readonly) int y;
|
|
@property(readonly) int z;
|
|
-(void) setY: (int) y0;
|
|
@end
|
|
|
|
@interface I0 (Cat0)
|
|
-(void) setX: (int) a0;
|
|
@end
|
|
|
|
@implementation I0
|
|
@dynamic x;
|
|
@dynamic y;
|
|
@dynamic z;
|
|
-(void) setY: (int) y0{}
|
|
|
|
-(void) im0 {
|
|
self.x = 0;
|
|
self.y = 2;
|
|
self.z = 2; // expected-error {{assigning to property with 'readonly' attribute not allowed}}
|
|
}
|
|
@end
|
|
|
|
// Test when property is 'readonly' but it has a setter in
|
|
// its implementation only.
|
|
@interface I1 {
|
|
}
|
|
@property(readonly) int identifier;
|
|
@end
|
|
|
|
|
|
@implementation I1
|
|
@dynamic identifier;
|
|
- (void)setIdentifier:(int)ident {}
|
|
|
|
- (id)initWithIdentifier:(int)Arg {
|
|
self.identifier = 0;
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
// Also in a category implementation
|
|
@interface I1(CAT)
|
|
@property(readonly) int rprop;
|
|
@end
|
|
|
|
|
|
@implementation I1(CAT)
|
|
@dynamic rprop;
|
|
- (void)setRprop:(int)ident {}
|
|
|
|
- (id)initWithIdentifier:(int)Arg {
|
|
self.rprop = 0;
|
|
}
|
|
|
|
@end
|
|
|
|
static int g_val;
|
|
|
|
@interface Root
|
|
+ alloc;
|
|
- init;
|
|
@end
|
|
|
|
@interface Subclass : Root
|
|
{
|
|
int setterOnly;
|
|
}
|
|
- (void) setSetterOnly:(int)value;
|
|
@end
|
|
|
|
@implementation Subclass
|
|
- (void) setSetterOnly:(int)value {
|
|
setterOnly = value;
|
|
g_val = setterOnly;
|
|
}
|
|
@end
|
|
|
|
int main (void) {
|
|
Subclass *x = [[Subclass alloc] init];
|
|
|
|
x.setterOnly = 4;
|
|
if (g_val != 4)
|
|
abort ();
|
|
return 0;
|
|
}
|