Files
kotlin-fork/compiler/testData/codegen/box/regressions/lambdaAsLastExpressionInLambda.kt
T
2018-06-09 19:15:38 +03:00

6 lines
98 B
Kotlin
Vendored

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