5 lines
95 B
Kotlin
5 lines
95 B
Kotlin
// "Make 'i' open" "true"
|
|
open class A() {
|
|
val i: Int = 1
|
|
<caret>open get(): Int = $i
|
|
} |