Files
kotlin-fork/idea/testData/quickfix/variables/changeMutability/afterValWithSetter.kt
T
Nikolay Krasko c21cdaf413 Start working with spaces:
KT-1532 IDEA should remove extra whitespaces when reformmating code
KT-1378 Code formatting: spaces around ':'

#KT-1532 fixed
#KT-1378 fixed
2012-03-11 22:11:55 +04:00

7 lines
93 B
Kotlin

// "Make variable mutable" "true"
class A() {
var a : Int = 0
set(v : Int) {
}
}