• Home
  • Raw
  • Download

Lines Matching refs:assigning

116 …a = &x; // expected-error {{assigning '__strong id *' to '__autoreleasing id *' changes retain/rel…
594 __weak id x = [Test30 new]; // expected-warning {{assigning retained object to weak variable}}
595 …id __unsafe_unretained u = [Test30 new]; // expected-warning {{assigning retained object to unsafe…
597 x = [Test30 new]; // expected-warning {{assigning retained object to weak variable}}
598 u = [Test30 new]; // expected-warning {{assigning retained object to unsafe_unretained variable}}
742 …picker1 = [[Radar11814185 alloc] init]; // expected-warning {{assigning retained object to weak va…
743 …self.picker1 = [[Radar11814185 alloc] init]; // expected-warning {{assigning retained object to we…
755 …__weak id y = @{ key : value }; // expected-warning {{assigning dictionary literal to a weak varia…
756 …__weak id z = @[ value ]; // expected-warning {{assigning array literal to a weak variable; object…
757 …__weak id b = ^() {}; // expected-warning {{assigning block literal to a weak variable; object wil…
758 …__weak id n = @42; // expected-warning {{assigning numeric literal to a weak variable; object will…
759 …__weak id e = @(42); // expected-warning {{assigning numeric literal to a weak variable; object wi…
760 …__weak id m = @(41 + 1); // expected-warning {{assigning boxed expression to a weak variable; obje…
763 …y = @{ key : value }; // expected-warning {{assigning dictionary literal to a weak variable; objec…
764 …z = @[ value ]; // expected-warning {{assigning array literal to a weak variable; object will be r…
765 …b = ^() {}; // expected-warning {{assigning block literal to a weak variable; object will be relea…
766 …n = @42; // expected-warning {{assigning numeric literal to a weak variable; object will be releas…
767 …e = @(42); // expected-warning {{assigning numeric literal to a weak variable; object will be rele…
768 …m = @(41 + 1); // expected-warning {{assigning boxed expression to a weak variable; object will be…