Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 "-triple" "x86_64-apple-darwin9.0.0" -fsyntax-only -verify %s |
| 2 | |
| 3 | void f0(int) __attribute__((availability(macosx,introduced=10.4,deprecated=10.6))); |
| 4 | void f1(int) __attribute__((availability(macosx,introduced=10.5))); |
| 5 | void f2(int) __attribute__((availability(macosx,introduced=10.4,deprecated=10.5))); |
| 6 | void f3(int) __attribute__((availability(macosx,introduced=10.6))); |
| 7 | void f4(int) __attribute__((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(ios,introduced=2.0,deprecated=3.0))); // expected-note{{explicitly marked unavailable}} |
| 8 | |
| 9 | void test() { |
| 10 | f0(0); |
| 11 | f1(0); |
| 12 | f2(0); // expected-warning{{'f2' is deprecated: first deprecated in Mac OS X 10.5}} |
| 13 | f3(0); |
| 14 | f4(0); // expected-error{{f4' is unavailable: obsoleted in Mac OS X 10.5}} |
| 15 | } |