Files
kotlin-fork/compiler/testData/diagnostics/tests/override/AbstractVarImplemented.fir.kt
T

8 lines
89 B
Kotlin
Vendored

abstract class A {
abstract var i: Int
}
class B() : A() {
override var i = 1
}