Files
kotlin-fork/backend.native/tests/external/codegen/box/casts/unitAsSafeAny.kt
T
2017-11-16 17:21:48 +03:00

9 lines
139 B
Kotlin

fun println(s: String) {
}
fun box(): String {
val x = println(":Hi!") as? Any
if (x != Unit) return "Fail: $x"
return "OK"
}