Files
kotlin-fork/compiler/testData/codegen/bytecodeText/checkcast/noCheckcastOnSuper.kt
T

10 lines
130 B
Kotlin
Vendored

interface Tr {
fun extra(): String = "e"
}
class N : Tr {
override fun extra(): String = super.extra()
}
// 0 CHECKCAST