[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaObjC / property-category-1.m
blob0e8c3fcd85df3edad531584ce16ed8f665ab21d3
1 // RUN: %clang_cc1 -fsyntax-only -verify -disable-objc-default-synthesize-properties -Wno-objc-root-class %s
3 @interface Object
4 + (id)new;
5 @end
7 @interface ReadOnly : Object
9   int _object;
10   int _Anotherobject;
12 @property(readonly) int object;
13 @property(readonly) int Anotherobject;
14 @end
16 @interface ReadOnly ()
17 @property(readwrite) int object;
18 @property(readwrite, setter = myAnotherobjectSetter:) int Anotherobject;
19 @end
21 @implementation ReadOnly
22 @synthesize object = _object;
23 @synthesize  Anotherobject = _Anotherobject;
24 - (void) myAnotherobjectSetter : (int)val {
25     _Anotherobject = val;
27 - (int) Anotherobject { return _Anotherobject; }
28 @end
30 int main(int argc, char **argv) {
31     ReadOnly *test = [ReadOnly new];
32     test.object = 12345;
33     test.Anotherobject = 200;
34     return test.object - 12345 + test.Anotherobject - 200;
37 ///
39 @interface I0
40 @property(readonly) int p0;     // expected-note {{property declared here}}
41 @end 
43 @interface I0 (Cat0)
44 @end 
46 @interface I0 (Cat1)
47 @end 
48   
49 @implementation I0      // expected-warning {{property 'p0' requires method 'p0' to be define}}
50 - (void) foo {
51   self.p0 = 0; // expected-error {{assignment to readonly property}}
53 @end