04e8cba857
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.
6 lines
87 B
Kotlin
Vendored
6 lines
87 B
Kotlin
Vendored
class A {
|
|
class Nested(val result: String)
|
|
}
|
|
|
|
fun box() = (A::Nested)("OK").result
|