Files
kotlin-fork/idea/testData/quickfix/addPropertyAccessors/var.kt.after
T
2019-04-04 11:10:39 +07:00

9 lines
153 B
Plaintext
Vendored

// "Add getter and setter" "true"
// WITH_RUNTIME
class Test {
var x: Int
get() {
<caret>TODO()
}
set(value) {}
}