Files
kotlin/compiler/testData/codegen/box/casts/unitAsSafeAny.kt
2015-07-06 16:14:06 +03:00

9 lines
139 B
Kotlin
Vendored

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