Files
kotlin-fork/idea/testData/quickfix/variables/changeMutability/const.kt.after
T
Toshiaki Kameyama f6059c3eb5 "Change to var": remove const modifier
#KT-35022 Fixed
2019-11-23 01:17:38 +09:00

8 lines
97 B
Plaintext
Vendored

// "Change to var" "true"
object A {
var A = 1
fun foo() {
<caret>A = 10
}
}