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

7 lines
66 B
Kotlin
Vendored

abstract class A {
abstract val i: Int
}
class B() : A() {
}