6 lines
103 B
Kotlin
Vendored
6 lines
103 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
val foo: ((String) -> String) = run {
|
|
{ it }
|
|
}
|
|
|
|
fun box() = foo("OK") |