Files
kotlin-fork/idea/testData/quickfix/variables/changeMutability/canBeVal/uninitializedWithGetter2.kt
T
2020-02-21 14:09:54 +01:00

7 lines
111 B
Kotlin
Vendored

// "Change to val" "true"
class Test {
var foo: Int<caret>
get() {
return 1
}
}