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