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