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

8 lines
120 B
Plaintext
Vendored

// "Add getter" "true"
// WITH_RUNTIME
class Test {
val x: Int
get() {
<caret>TODO()
}
}