Files
kotlin/compiler/testData/codegen/bytecodeText/superToString.kt
2020-04-16 10:53:48 +03:00

9 lines
144 B
Kotlin
Vendored

interface A
abstract class Base: A
class Derived : Base() {
override fun toString() = super.toString()
}
// 1 INVOKESPECIAL Base.toString