[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Sema / attr-availability-ios.c
blobb97b7e688cc6152df98a87916fd3490708a5f524
1 // RUN: %clang_cc1 "-triple" "x86_64-apple-ios3.0" -fsyntax-only -verify %s
3 void f0(int) __attribute__((availability(ios,introduced=2.0,deprecated=2.1))); // expected-note {{'f0' has been explicitly marked deprecated here}}
4 void f1(int) __attribute__((availability(ios,introduced=2.1)));
5 void f2(int) __attribute__((availability(iOS,introduced=2.0,deprecated=3.0))); // expected-note {{'f2' has been explicitly marked deprecated here}}
6 void f3(int) __attribute__((availability(ios,introduced=3.0)));
7 void f4(int) __attribute__((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(ios,introduced=2.0,deprecated=2.1,obsoleted=3.0))); // expected-note{{explicitly marked unavailable}}
9 void f5(int) __attribute__((availability(ios,introduced=2.0))) __attribute__((availability(ios,deprecated=3.0))); // expected-note {{'f5' has been explicitly marked deprecated here}}
10 void f6(int) __attribute__((availability(ios,deprecated=3.0))); // expected-note {{'f6' has been explicitly marked deprecated here}}
11 void f6(int) __attribute__((availability(iOS,introduced=2.0)));
13 void test(void) {
14 f0(0); // expected-warning{{'f0' is deprecated: first deprecated in iOS 2.1}}
15 f1(0);
16 f2(0); // expected-warning{{'f2' is deprecated: first deprecated in iOS 3.0}}
17 f3(0);
18 f4(0); // expected-error{{f4' is unavailable: obsoleted in iOS 3.0}}
19 f5(0); // expected-warning{{'f5' is deprecated: first deprecated in iOS 3.0}}
20 f6(0); // expected-warning{{'f6' is deprecated: first deprecated in iOS 3.0}}