5 lines
86 B
Kotlin
5 lines
86 B
Kotlin
trait Hello {
|
|
var <caret>some: String
|
|
get() = "Hi"
|
|
set(value) {}
|
|
} |