// FILE: F.java import java.util.function.Function; public class F { public static U passNull(Function f) { return f.apply(null); } } // FILE: test.kt // WITH_RUNTIME // FULL_JDK fun test(f: (Int?) -> String): String { return F.passNull(f) } fun box(): String { return test { it?.toString() ?: "OK" } }