Given an explicit nullability annotation on the Java side, how does it change the platform-type behavior in Kotlin?
// Java
import org.jetbrains.annotations.Nullable;
public class J { public static @Nullable String get() { return null; } }
// Kotlin
val s = J.get() // inferred type?