// FILE: 1.kt inline fun foo(): String { return bar()!!.toString() } fun bar(): T = "OK" as T // FILE: 2.kt fun box() = foo()