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