Files
kotlin-fork/backend.native/tests/external/codegen/box/casts/lambdaToUnitCast.kt
T
2017-11-16 17:21:48 +03:00

6 lines
81 B
Kotlin

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