Files
kotlin-fork/compiler/testData/codegen/box/regressions/lambdaAsLastExpressionInLambda.kt
T
2018-06-28 12:26:41 +02:00

7 lines
124 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
val foo: ((String) -> String) = run {
{ it }
}
fun box() = foo("OK")