mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
IR expects overridden symbols of "invoke" in KFunction to be "invoke" in the corresponding Function classes. Before this commit we don't set overriddenSymbol, now we do.
19 lines
266 B
Kotlin
Vendored
19 lines
266 B
Kotlin
Vendored
fun run(arg1: A, funRef:A.() -> String): String {
|
|
return arg1.funRef()
|
|
}
|
|
|
|
class A
|
|
|
|
fun A.foo() = "OK"
|
|
|
|
fun box(): String {
|
|
val x = A::foo
|
|
var r = x(A())
|
|
if (r != "OK") return r
|
|
|
|
r = run(A(), A::foo)
|
|
if (r != "OK") return r
|
|
|
|
return "OK"
|
|
}
|