Files
kotlin-fork/compiler/testData/codegen/box/regressions/lambdaAsLastExpressionInLambda.kt
T
2018-08-09 14:22:50 +03:00

6 lines
98 B
Kotlin
Vendored

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