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

8 lines
165 B
Kotlin
Vendored

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