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