7d59c7689c
Due to the direct invoke optimization, most callable reference tests were not generating callable references/lambdas.
6 lines
83 B
Kotlin
Vendored
6 lines
83 B
Kotlin
Vendored
|
|
object Singleton {
|
|
fun ok() = "OK"
|
|
}
|
|
|
|
fun box() = (Singleton::ok).let { it() } |