7 lines
128 B
Kotlin
7 lines
128 B
Kotlin
// "Change '$foo' to 'foo'" "true"
|
|
class A {
|
|
val foo : Int
|
|
get() = 5
|
|
val bar : Int
|
|
get() = $<caret>foo
|
|
} |