Files
kotlin/compiler/testData/codegen/box/casts/lambdaToUnitCast.kt
2018-10-09 15:33:04 +03:00

6 lines
81 B
Kotlin
Vendored

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