7d59c7689c
Due to the direct invoke optimization, most callable reference tests were not generating callable references/lambdas.
11 lines
142 B
Kotlin
Vendored
11 lines
142 B
Kotlin
Vendored
fun box(): String {
|
|
var i = 0
|
|
{
|
|
if (1 == 1) {
|
|
i++
|
|
} else {
|
|
}
|
|
}.let { it() }
|
|
return "OK"
|
|
}
|