5 lines
125 B
Kotlin
5 lines
125 B
Kotlin
// "Remove getter and initializer from property" "true"
|
|
abstract class B {
|
|
abstract val i = <caret>0
|
|
get() = $i
|
|
} |