Lines Matching refs:ARC
8 cp = test0(op); // expected-error {{'test0' is unavailable in ARC}}
9 cp = *test1(&op); // expected-error {{'test1' is unavailable in ARC}}
10 …cted-note@arc-system-header.h:1 {{inline function performs a conversion which is forbidden in ARC}}
11 …cted-note@arc-system-header.h:5 {{inline function performs a conversion which is forbidden in ARC}}
15 p->field = 0; // expected-error {{'field' is unavailable in ARC}}
16 … // expected-note@arc-system-header.h:14 {{declaration uses type that is ill-formed in ARC}}
20 p->field1 = 0; // expected-error {{'field1' is unavailable in ARC}}
21 … // expected-note@arc-system-header.h:19 {{declaration uses type that is ill-formed in ARC}}
26 p->field = 0; // expected-error {{'field' is unavailable in ARC}}
42 *p.prop = 0; // expected-error {{'prop' is unavailable in ARC}}
43 p.prop = 0; // expected-error {{'prop' is unavailable in ARC}}
44 *[p prop] = 0; // expected-error {{'prop' is unavailable in ARC}}
45 [p setProp: 0]; // expected-error {{'setProp:' is unavailable in ARC}}
46 // expected-note@arc-system-header.h:41 4 {{declaration uses type that is ill-formed in ARC}}
52 Test9 foo2 = {0, 0}; // expected-error {{'field' is unavailable in ARC}}