Files
kotlin/compiler/testData/codegen/box/casts/lambdaToUnitCast.kt
2019-11-19 11:00:09 +03:00

7 lines
111 B
Kotlin
Vendored

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