Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:__weak

7     id __weak y;
18 id __weak y;
29 id __weak y;
41 @property(strong) __weak id y; // expected-error {{strong property 'y' may not also be declared __weak}} expected-error {{property attributes 'strong' and 'weak' are mutually exclusive}}
47 @property(retain) __weak id y; // expected-error {{strong property 'y' may not also be declared __weak}} expected-error {{property attributes 'retain' and 'weak' are mutually exclusive}}
53 @property(copy) __weak id y; // expected-error {{strong property 'y' may not also be declared __weak}} expected-error {{property attributes 'copy' and 'weak' are mutually exclusive}}
59 @property(assign) __weak id y; // expected-error {{property attributes 'assign' and 'weak' are mutually exclusive}}
65 @property(unsafe_unretained) __weak id y; // expected-error {{property attributes 'unsafe_unretained' and 'weak' are mutually exclusive}}