Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:unavailable

8   cp = test0(op); // expected-error {{'test0' is unavailable: converts between Objective-C and C pointers in -fobjc-arc}}
9 cp = *test1(&op); // expected-error {{'test1' is unavailable: converts between Objective-C and C pointers in -fobjc-arc}}
10 // expected-note@arc-system-header.h:1 {{marked unavailable here}}
11 // expected-note@arc-system-header.h:5 {{marked unavailable here}}
15 p->field = 0; // expected-error {{'field' is unavailable: this system declaration uses an unsupported type}}
16 // expected-note@arc-system-header.h:14 {{marked unavailable here}}
20 p->field1 = 0; // expected-error {{'field1' is unavailable: this system declaration uses an unsupported type}}
21 // expected-note@arc-system-header.h:19 {{marked unavailable here}}
26 p->field = 0; // expected-error {{'field' is unavailable: this system field has retaining ownership}}
27 // expected-note@arc-system-header.h:25 {{marked unavailable here}}
42 *p.prop = 0; // expected-error {{'prop' is unavailable: this system declaration uses an unsupported type}}
43 p.prop = 0; // expected-error {{'prop' is unavailable: this system declaration uses an unsupported type}}
44 *[p prop] = 0; // expected-error {{'prop' is unavailable: this system declaration uses an unsupported type}}
45 [p setProp: 0]; // expected-error {{'setProp:' is unavailable: this system declaration uses an unsupported type}}
46 // expected-note@arc-system-header.h:41 4 {{marked unavailable here}}
47 // expected-note@arc-system-header.h:41 2 {{property 'prop' is declared unavailable here}}