blob: 13dc8e5bb13fbc6939d8b99a69fb4cf51e40c7bd [file] [log] [blame]
Fariborz Jahanian0f0b3022010-12-22 19:46:35 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2// rdar://8155806
3
4@interface Subclass
5{
6 int setterOnly;
7}
8- (void) setSetterOnly : (int) arg;
9@end
10
11int func (int arg, Subclass *x) {
Eli Friedmanfd41aee2012-11-29 03:13:49 +000012 if (x.setterOnly) { // expected-error {{no getter method for read from property}}
Fariborz Jahanian0f0b3022010-12-22 19:46:35 +000013 x.setterOnly = 1;
14 }
Eli Friedmanfd41aee2012-11-29 03:13:49 +000015 func(x.setterOnly + 1, x); // expected-error {{no getter method for read from property}}
16 int i = x.setterOnly + 1; // expected-error {{no getter method for read from property}}
17 return x.setterOnly + 1; // expected-error {{no getter method for read from property}}
Fariborz Jahanian0f0b3022010-12-22 19:46:35 +000018}
19
Eli Friedmanfd41aee2012-11-29 03:13:49 +000020// <rdar://problem/12765391>
21
22@interface TestClass
23+ (void) setSetterOnly : (int) arg;
24@end
25
26int func2 (int arg) {
27 if (TestClass.setterOnly) { // expected-error {{no getter method for read from property}}
28 TestClass.setterOnly = 1;
29 }
Kaelyn Takata22101f92014-07-14 22:48:10 +000030 func(TestClass.setterOnly + 1, x); // expected-error {{no getter method for read from property}} \
31 // expected-error {{use of undeclared identifier 'x'}}
Eli Friedmanfd41aee2012-11-29 03:13:49 +000032 int i = TestClass.setterOnly + 1; // expected-error {{no getter method for read from property}}
33 return TestClass.setterOnly + 1; // expected-error {{no getter method for read from property}}
34}
35
36@interface Sub : Subclass
37- (int) func3;
38@end
39@implementation Sub
40- (int) func3 {
41 return super.setterOnly; // expected-error {{no getter method for read from property}}
42}
43@end