Files
kotlin/compiler/testData/codegen/box/casts/lambdaToUnitCast.kt
2018-06-28 12:26:41 +02:00

8 lines
132 B
Kotlin
Vendored

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