7 lines
66 B
Kotlin
Vendored
7 lines
66 B
Kotlin
Vendored
abstract class A {
|
|
abstract val i: Int
|
|
}
|
|
|
|
class B() : A() {
|
|
}
|