150
|
1 // RUN: %clang_cc1 "-triple" "arm-linux-androideabi16" -fsyntax-only -verify %s
|
236
|
2 // RUN: %clang_cc1 -D WARN_PARTIAL -Wpartial-availability "-triple" "arm-linux-androideabi16" -fsyntax-only -verify %s
|
150
|
3
|
|
4 void f0(int) __attribute__((availability(android,introduced=14,deprecated=19)));
|
|
5 void f1(int) __attribute__((availability(android,introduced=16)));
|
|
6 void f2(int) __attribute__((availability(android,introduced=14,deprecated=16))); // expected-note {{'f2' has been explicitly marked deprecated here}}
|
236
|
7 #ifdef WARN_PARTIAL
|
|
8 // expected-note-re@+2 {{'f3' has been marked as being introduced in Android 19 here, but the deployment target is Android 16{{$}}}}
|
|
9 #endif
|
150
|
10 void f3(int) __attribute__((availability(android,introduced=19)));
|
|
11 void f4(int) __attribute__((availability(android,introduced=9,deprecated=11,obsoleted=16), availability(ios,introduced=2.0,deprecated=3.0))); // expected-note{{explicitly marked unavailable}}
|
|
12 void f5(int) __attribute__((availability(ios,introduced=3.2), availability(android,unavailable))); // expected-note{{'f5' has been explicitly marked unavailable here}}
|
|
13
|
236
|
14 void test(void) {
|
150
|
15 f0(0);
|
|
16 f1(0);
|
236
|
17 f2(0); // expected-warning-re{{'f2' is deprecated: first deprecated in Android 16{{$}}}}
|
|
18 #ifdef WARN_PARTIAL
|
|
19 // expected-warning@+2{{'f3' is only available on Android 19 or newer}} expected-note@+2{{enclose 'f3' in a __builtin_available check to silence this warning}}
|
|
20 #endif
|
150
|
21 f3(0);
|
236
|
22 f4(0); // expected-error-re{{'f4' is unavailable: obsoleted in Android 16{{$}}}}
|
150
|
23 f5(0); // expected-error{{'f5' is unavailable: not available on Android}}
|
|
24 }
|
|
25
|
|
26 // rdar://10535640
|
|
27
|
|
28 enum {
|
|
29 foo __attribute__((availability(android,introduced=8.0,deprecated=9.0)))
|
|
30 };
|
|
31
|
|
32 enum {
|
|
33 bar __attribute__((availability(android,introduced=8.0,deprecated=9.0))) = foo
|
|
34 };
|
|
35
|
|
36 enum __attribute__((availability(android,introduced=8.0,deprecated=9.0))) {
|
|
37 bar1 = foo
|
|
38 };
|