blob: 75d5fcb7ae7ae63c5a724c8d585aeb1efaf4b2aa [file] [log] [blame]
interface Z<T> {
fun test(p: T): T {
return p
}
}
open class ZImpl : Z<String>
class ZImpl2 : ZImpl() {
override fun test(p: String): String {
return super.test(p)
}
}
fun box(): String {
return ZImpl2().test("OK")
}