11 lines
131 B
Kotlin
11 lines
131 B
Kotlin
class C {
|
|
var property = "abc"
|
|
get() = $property + 1
|
|
|
|
fun foo(){
|
|
"$<caret>"
|
|
}
|
|
}
|
|
|
|
// ELEMENT: $property
|