blob: 6462d58beec0d4e602a4518e1933b48412f98ad9 [file] [log] [blame]
Bob Wilson48b68a02012-01-31 23:52:58 +00001// RUN: %clang_cc1 "-triple" "x86_64-apple-ios3.0" -fsyntax-only -verify %s
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002
Stephen Hines651f13c2014-04-23 16:59:28 -07003void f0(int) __attribute__((availability(ios,introduced=2.0,deprecated=2.1))); // expected-note {{'f0' has been explicitly marked deprecated here}}
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00004void f1(int) __attribute__((availability(ios,introduced=2.1)));
Stephen Hines651f13c2014-04-23 16:59:28 -07005void f2(int) __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{'f2' has been explicitly marked deprecated here}}
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00006void f3(int) __attribute__((availability(ios,introduced=3.0)));
7void 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}}
8
Stephen Hines651f13c2014-04-23 16:59:28 -07009void f5(int) __attribute__((availability(ios,introduced=2.0))) __attribute__((availability(ios,deprecated=3.0))); // expected-note {{'f5' has been explicitly marked deprecated here}}
Douglas Gregor6cc425e2011-03-26 10:47:34 +000010void f6(int) __attribute__((availability(ios,deprecated=3.0)));
Stephen Hines651f13c2014-04-23 16:59:28 -070011void f6(int) __attribute__((availability(ios,introduced=2.0))); // expected-note {{'f6' has been explicitly marked deprecated here}}
Douglas Gregor6cc425e2011-03-26 10:47:34 +000012
Douglas Gregor0a0d2b12011-03-23 00:50:03 +000013void test() {
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}}
Douglas Gregor6cc425e2011-03-26 10:47:34 +000019 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}}
Douglas Gregor0a0d2b12011-03-23 00:50:03 +000021}