Lines Matching full:may
40 @property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be…
41 @property(strong) __weak id y; // expected-error {{strong property 'y' may not also be declared __w…
42 @property(strong) __autoreleasing id z; // expected-error {{strong property 'z' may not also be dec…
46 @property(retain) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be…
47 @property(retain) __weak id y; // expected-error {{strong property 'y' may not also be declared __w…
48 @property(retain) __autoreleasing id z; // expected-error {{strong property 'z' may not also be dec…
52 @property(copy) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be d…
53 @property(copy) __weak id y; // expected-error {{strong property 'y' may not also be declared __wea…
54 @property(copy) __autoreleasing id z; // expected-error {{strong property 'z' may not also be decla…
59 @property(assign) __weak id y; // expected-error {{unsafe_unretained property 'y' may not also be d…
60 @property(assign) __autoreleasing id z; // expected-error {{unsafe_unretained property 'z' may not …
65 @property(unsafe_unretained) __weak id y; // expected-error {{unsafe_unretained property 'y' may no…
66 …) __autoreleasing id z; // expected-error {{unsafe_unretained property 'z' may not also be declare…