c21cdaf413
KT-1532 IDEA should remove extra whitespaces when reformmating code KT-1378 Code formatting: spaces around ':' #KT-1532 fixed #KT-1378 fixed
7 lines
93 B
Kotlin
7 lines
93 B
Kotlin
// "Make variable mutable" "true"
|
|
class A() {
|
|
var a : Int = 0
|
|
set(v : Int) {
|
|
}
|
|
}
|