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