Files
kotlin-fork/compiler/testData/klibABI/removeOpenFunction/lib2/l2.kt
T

8 lines
157 B
Kotlin
Vendored

class C2 : C() {
override fun foo(): String = "O" // does not call super
}
class I2 : I {
override fun foo(): String = "K" // does not call super
}