Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:property

7     id x; // expected-error {{existing instance variable 'x' for __weak property 'x' must be __weak}}
9 @property (weak) id value1;
10 @property __weak id value;
11 @property () __weak id value2;
13 @property (weak, assign) id v1; // expected-error {{property attributes 'assign' and 'weak' are mutually exclusive}}
14 @property (weak, copy) id v2; // expected-error {{property attributes 'copy' and 'weak' are mutually exclusive}}
15 @property (weak, retain) id v3; // expected-error {{property attributes 'retain' and 'weak' are mutually exclusive}}
16 @property (weak, assign) id v4; // expected-error {{property attributes 'assign' and 'weak' are mutually exclusive}}
18 @property () __weak id x; // expected-note {{property declared here}}
22 @synthesize x; // expected-note {{property synthesized here}}