7d59c7689c
Due to the direct invoke optimization, most callable reference tests were not generating callable references/lambdas.
4 lines
71 B
Kotlin
Vendored
4 lines
71 B
Kotlin
Vendored
class A(val result: String)
|
|
|
|
fun box() = (::A).let { it("OK") }.result
|