You are relying on implicit platform types. ``` f...
# announcements
j
You are relying on implicit platform types.
Copy code
fun myFun(param: String) { ... }

fun other() {
    // someFunction is from java.
    val foo: String? = someFunction()
    myFun(foo)
}