5 lines
99 B
Kotlin
5 lines
99 B
Kotlin
// "Make 'i' not abstract" "true"
|
|
class B {
|
|
<caret>abstract val i: Int = 0
|
|
get() = $i
|
|
} |