blob: ed6935687cf3c4f12a8dc4e1e54ef55e2bb16c0c [file]
package a
import b.*
interface B {
companion object : A() {}
fun test() {
foo()
}
}
class C : B
fun box(): String {
C().test()
return result
}