1#if __ANDROID_API__ < 12
2static int foo() {
3  return 0;
4}
5#else
6int foo() __INTRODUCED_IN(12);
7#endif
8