Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 "-triple" "x86_64-apple-darwin3.0.0-iphoneos" -fsyntax-only -verify %s |
| 2 | |
| 3 | void f0(int) __attribute__((availability(ios,introduced=2.0,deprecated=2.1))); |
| 4 | void f1(int) __attribute__((availability(ios,introduced=2.1))); |
| 5 | void f2(int) __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); |
| 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}} |
| 8 | |
| 9 | void test() { |
| 10 | f0(0); // expected-warning{{'f0' is deprecated: first deprecated in iOS 2.1}} |
| 11 | f1(0); |
| 12 | f2(0); // expected-warning{{'f2' is deprecated: first deprecated in iOS 3.0}} |
| 13 | f3(0); |
| 14 | f4(0); // expected-error{{f4' is unavailable: obsoleted in iOS 3.0}} |
| 15 | } |