Lines Matching full:__weak
5 id __weak myString; // expected-error {{existing instance variable 'myString' for strong property 'myString' may not be __weak}}
7 id __weak myString2; // expected-error {{existing instance variable 'myString2' for strong property 'myString2' may not be __weak}}
8 id __weak myString3;
9 id StrongIvar5; // expected-error {{existing instance variable 'StrongIvar5' for __weak property 'myString5' must be __weak}}
17 @property __weak id myString5; // expected-note {{property declared here}}
34 id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for __weak property 'x' must be __weak}}
35 id __strong y; // expected-error {{existing instance variable 'y' for __weak property 'y' must be __weak}}