blob: f7aa9adc9ee62cc2918875c431f1803f89a9dd45 [file] [log] [blame]
// FIR_IDENTICAL
import Derived.foo
interface Base {
fun foo() {}
}
object Derived : Base
fun test() {
// Both calls resolved to Base.foo()
foo()
Derived.foo()
}