Files
kotlin-fork/backend.native/tests/external/codegen/box/casts/unitAsAny.kt
T
2017-03-13 15:31:46 +03:00

12 lines
234 B
Kotlin

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
fun println(s: String) {
}
fun box(): String {
val x = println(":Hi!") as Any
if (x != Unit) return "Fail: $x"
return "OK"
}