Files
kotlin/compiler/testData/codegen/box/casts/lambdaToUnitCast.kt
2018-08-09 14:22:50 +03:00

7 lines
106 B
Kotlin
Vendored

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