Files
kotlin-fork/idea/testData/quickfix/variables/changeMutability/afterValWithSetter.kt
T
Alexander.Podkhalyuzin b5b9f7ba98 Fixed broken testdata.
2012-05-23 15:58:12 +04:00

7 lines
99 B
Kotlin

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