a2d644f708
#KT-9958 Fixed
18 lines
175 B
Kotlin
Vendored
18 lines
175 B
Kotlin
Vendored
package a
|
|
|
|
import b.*
|
|
|
|
interface B {
|
|
companion object : A() {}
|
|
|
|
fun test() {
|
|
foo()
|
|
}
|
|
}
|
|
|
|
class C : B
|
|
|
|
fun box(): String {
|
|
C().test()
|
|
return result
|
|
} |