mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-07 08:31: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.
12 lines
146 B
Kotlin
Vendored
12 lines
146 B
Kotlin
Vendored
var result = "Fail"
|
|
|
|
fun foo(newResult: String) {
|
|
result = newResult
|
|
}
|
|
|
|
fun box(): String {
|
|
val x = ::foo
|
|
x("OK")
|
|
return result
|
|
}
|