Files
kotlin-fork/idea/testData/quickfix/variables/changeMutability/beforeValWithSetter.kt
T
2011-11-01 19:00:57 +04:00

6 lines
97 B
Kotlin

// "Make variable mutable" "true"
class A() {
val a: Int = 0
<caret>set(v: Int) {}
}