Aaron Ballman | 38bbc16 | 2018-02-24 17:16:42 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fsyntax-only -fdouble-square-bracket-attributes -verify %s |
| 2 | |
| 3 | void f0() [[clang::availability(macosx,introduced=10.4,deprecated=10.2)]]; // expected-warning{{feature cannot be deprecated in macOS version 10.2 before it was introduced in version 10.4; attribute ignored}} |
| 4 | void f1() [[clang::availability(ios,obsoleted=2.1,deprecated=3.0)]]; // expected-warning{{feature cannot be obsoleted in iOS version 2.1 before it was deprecated in version 3.0; attribute ignored}} |
| 5 | void f2() [[clang::availability(ios,introduced=2.1,deprecated=2.1)]]; |
| 6 | |
| 7 | extern void |
| 8 | ATSFontGetName(const char *oName) [[clang::availability(macosx,introduced=8.0,deprecated=9.0, message="use CTFontCopyFullName")]]; // expected-note {{'ATSFontGetName' has been explicitly marked deprecated here}} |
| 9 | |
| 10 | void test_10095131() { |
| 11 | ATSFontGetName("Hello"); // expected-warning {{'ATSFontGetName' is deprecated: first deprecated in macOS 9.0 - use CTFontCopyFullName}} |
| 12 | } |
| 13 | |
| 14 | enum |
| 15 | [[clang::availability(macos, unavailable)]] |
| 16 | { |
| 17 | NSDataWritingFileProtectionWriteOnly = 0x30000000, |
| 18 | NSDataWritingFileProtectionCompleteUntilUserAuthentication = 0x40000000, |
| 19 | }; |
| 20 | |
| 21 | extern int x [[clang::availability(macosx,introduced=10.5)]]; |
| 22 | extern int x; |
| 23 | |
| 24 | int i [[clang::availability(this, should = 1.0)]]; // expected-error {{'should' is not an availability stage; use 'introduced', 'deprecated', or 'obsoleted'}} \ |
| 25 | // expected-warning {{unknown platform 'this' in availability macro}} |