Files
kotlin-fork/compiler/testData/codegen/box/regressions/lambdaAsLastExpressionInLambda.kt
T
2018-08-15 13:35:14 +03:00

5 lines
73 B
Kotlin
Vendored

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