[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaObjC / avoid-unavailable-implementation-warning-in-app-extension.m
blob06872a9cab367f0a105747104f451e299cb2b888
1 // RUN: %clang_cc1 -triple arm64-apple-ios11 -fapplication-extension -Wdeprecated-implementations -verify -Wno-objc-root-class %s
2 // RUN: %clang_cc1 -triple arm64-apple-tvos11 -fapplication-extension -Wdeprecated-implementations -verify -Wno-objc-root-class %s
3 // Declarations marked as 'unavailable' in an app extension should not generate a
4 // warning on implementation.
6 @interface Parent
7 - (void)ok __attribute__((availability(ios_app_extension,unavailable,message="not available")));
8 - (void)reallyUnavail __attribute__((availability(ios,unavailable))); // expected-note {{method 'reallyUnavail' declared here}}
9 - (void)reallyUnavail2 __attribute__((unavailable)); // expected-note {{method 'reallyUnavail2' declared here}}
10 @end
12 @interface Child : Parent
13 @end
15 @implementation Child
17 - (void)ok { // no warning.
19 - (void)reallyUnavail { // expected-warning {{implementing unavailable method}}
21 - (void)reallyUnavail2 { // expected-warning {{implementing unavailable method}}
24 @end