Files
kotlin-fork/compiler/testData/ir/irText/expressions/kt35730.kt
T
2021-11-09 21:04:35 +03:00

11 lines
177 B
Kotlin
Vendored

// FIR_IDENTICAL
import Derived.foo
interface Base {
fun foo() {}
}
object Derived : Base
fun test() {
// Both calls resolved to Base.foo()
foo()
Derived.foo()
}