7 lines
124 B
Kotlin
Vendored
7 lines
124 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// IGNORE_BACKEND: JS_IR
|
|
val foo: ((String) -> String) = run {
|
|
{ it }
|
|
}
|
|
|
|
fun box() = foo("OK") |