Files
kotlin-fork/idea/testData/quickfix/addPropertyAccessors/val.kt.after
T

9 lines
121 B
Plaintext
Vendored

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