Lines Matching full:unavailable
7 __attribute__((availability(macosx_app_extension,unavailable)))
9 __attribute__((availability(ios_app_extension,unavailable)))
11 __attribute__((availability(tvos_app_extension,unavailable)))
14 void f0(int); // expected-note {{'f0' has been explicitly marked unavailable here}}
16 __attribute__((availability(macosx,unavailable)))
18 __attribute__((availability(ios,unavailable)))
20 __attribute__((availability(tvos,unavailable)))
22 void f1(int); // expected-note {{'f1' has been explicitly marked unavailable here}}
25 f0(1); // expected-error {{'f0' is unavailable: not available on}}
26 f1(1); // expected-error {{'f1' is unavailable}}