[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaObjC / unguarded-availability-category-protocol-use.m
blobd2eb9f4841be17c2e9c394c34f225fb982bd3a8f
1 // RUN: %clang_cc1 -triple arm64-apple-ios10 -Wunguarded-availability -fblocks -fsyntax-only -verify %s
3 __attribute__((availability(ios,unavailable)))
4 @protocol Prot // expected-note {{here}}
6 @end
8 @interface A
9 @end
11 __attribute__((availability(ios,unavailable)))
12 @interface A (Cat) <Prot> // No error.
13 @end
15 __attribute__((availability(tvos,unavailable)))
16 @interface B @end
17 @interface B (Cat) <Prot> // expected-error {{'Prot' is unavailable: not available on iOS}}
18 @end