[FIR] Support imported callable from object properly #KT-35730 Fixed
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import Derived.foo
|
||||
interface Base {
|
||||
fun foo() {}
|
||||
}
|
||||
object Derived : Base
|
||||
fun test() {
|
||||
// Both calls resolved to Base.foo()
|
||||
foo()
|
||||
Derived.foo()
|
||||
}
|
||||
Reference in New Issue
Block a user