Files
kotlin-fork/compiler/testData/codegen/box/casts/lambdaToUnitCast.kt
T
2018-06-09 19:15:38 +03:00

7 lines
106 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
val foo: () -> Unit = {}
fun box(): String {
foo() as Unit
return "OK"
}