7d59c7689c
Due to the direct invoke optimization, most callable reference tests were not generating callable references/lambdas.
36 lines
567 B
Kotlin
Vendored
36 lines
567 B
Kotlin
Vendored
class C {
|
|
private fun String.ext() : String = ""
|
|
private fun f() {}
|
|
|
|
public fun foo() : String {
|
|
{
|
|
"".ext()
|
|
f()
|
|
}.let { it.invoke() }
|
|
|
|
object : Runnable {
|
|
public override fun run() {
|
|
"".ext()
|
|
f()
|
|
}
|
|
}.run()
|
|
|
|
Inner().innerFun()
|
|
|
|
return "OK"
|
|
}
|
|
|
|
private inner class Inner() {
|
|
fun innerFun() {
|
|
"".ext()
|
|
f()
|
|
}
|
|
}
|
|
}
|
|
|
|
interface Runnable {
|
|
fun run(): Unit
|
|
}
|
|
|
|
fun box() = C().foo()
|