b84260f39f
#KT-13689 Fixed
16 lines
191 B
Kotlin
Vendored
16 lines
191 B
Kotlin
Vendored
import A.Companion.run
|
|
|
|
open class Action<T> {
|
|
fun run(t: T){}
|
|
}
|
|
|
|
open class A {
|
|
companion object : Action<String>() {
|
|
}
|
|
}
|
|
|
|
class B : A() {
|
|
fun foo() {
|
|
run("")
|
|
}
|
|
} |