7d59c7689c
Due to the direct invoke optimization, most callable reference tests were not generating callable references/lambdas.
11 lines
125 B
Kotlin
Vendored
11 lines
125 B
Kotlin
Vendored
fun box(): String {
|
|
val x: String
|
|
x = "OK"
|
|
{
|
|
val y = x
|
|
}.let { it() }
|
|
return x
|
|
}
|
|
|
|
// 0 ObjectRef
|