Files
kotlin/compiler/testData/codegen/box/casts/lambdaToUnitCast.kt

6 lines
81 B
Kotlin

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