f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
42 lines
1.3 KiB
Objective-C
42 lines
1.3 KiB
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// rdar://8155806
|
|
|
|
@interface Subclass
|
|
{
|
|
int setterOnly;
|
|
}
|
|
- (void) setSetterOnly : (int) arg;
|
|
@end
|
|
|
|
int func (int arg, Subclass *x) {
|
|
if (x.setterOnly) { // expected-error {{no getter method for read from property}}
|
|
x.setterOnly = 1;
|
|
}
|
|
func(x.setterOnly + 1, x); // expected-error {{no getter method for read from property}}
|
|
int i = x.setterOnly + 1; // expected-error {{no getter method for read from property}}
|
|
return x.setterOnly + 1; // expected-error {{no getter method for read from property}}
|
|
}
|
|
|
|
// <rdar://problem/12765391>
|
|
|
|
@interface TestClass
|
|
+ (void) setSetterOnly : (int) arg;
|
|
@end
|
|
|
|
int func2 (int arg) {
|
|
if (TestClass.setterOnly) { // expected-error {{no getter method for read from property}}
|
|
TestClass.setterOnly = 1;
|
|
}
|
|
func(TestClass.setterOnly + 1, x); // expected-error {{no getter method for read from property}}
|
|
int i = TestClass.setterOnly + 1; // expected-error {{no getter method for read from property}}
|
|
return TestClass.setterOnly + 1; // expected-error {{no getter method for read from property}}
|
|
}
|
|
|
|
@interface Sub : Subclass
|
|
- (int) func3;
|
|
@end
|
|
@implementation Sub
|
|
- (int) func3 {
|
|
return super.setterOnly; // expected-error {{no getter method for read from property}}
|
|
}
|
|
@end
|