dfd9aabf8e
#KT-61514 Fixed
21 lines
298 B
Kotlin
Vendored
21 lines
298 B
Kotlin
Vendored
interface Z<T> {
|
|
fun test(p: T): T {
|
|
return p
|
|
}
|
|
}
|
|
|
|
open class ZImpl : Z<String>
|
|
|
|
open class ZImpl2 : Z<String>, ZImpl()
|
|
|
|
class ZImpl3 : ZImpl2() {
|
|
|
|
override fun test(p: String): String {
|
|
return super.test(p)
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return ZImpl3().test("OK")
|
|
}
|