blob: 3dce858837aa96e7fb24e9f5941759bcd5b0103d [file] [log] [blame]
Fariborz Jahanian99130e52010-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 Friedmana70779f2012-11-29 03:13:49 +000012 if (x.setterOnly) { // expected-error {{no getter method for read from property}}
Fariborz Jahanian99130e52010-12-22 19:46:35 +000013 x.setterOnly = 1;
14 }
Eli Friedmana70779f2012-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 Jahanian99130e52010-12-22 19:46:35 +000018}
19
Eli Friedmana70779f2012-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 }
30 func(TestClass.setterOnly + 1, x); // expected-error {{no getter method for read from property}}
31 int i = TestClass.setterOnly + 1; // expected-error {{no getter method for read from property}}
32 return TestClass.setterOnly + 1; // expected-error {{no getter method for read from property}}
33}
34
35@interface Sub : Subclass
36- (int) func3;
37@end
38@implementation Sub
39- (int) func3 {
40 return super.setterOnly; // expected-error {{no getter method for read from property}}
41}
42@end