mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-07 00:21:28 +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.
20 lines
352 B
Kotlin
Vendored
20 lines
352 B
Kotlin
Vendored
fun <T> run(arg1: T, arg2: T, funRef:(T,T) -> T): T {
|
|
return funRef(arg1, arg2)
|
|
}
|
|
|
|
fun foo(o: Int, k: Int) = o + k
|
|
|
|
class A
|
|
|
|
fun A.bar() = (::foo)(111, 222)
|
|
|
|
fun box(): String {
|
|
val result = A().bar()
|
|
if (result != 333) return "Fail $result"
|
|
|
|
var r = run(111, 222, ::foo)
|
|
if (result != 333) return "Fail $result"
|
|
|
|
return "OK"
|
|
}
|