Files
kotlin-fork/idea/testData/quickfix/changeVariableMutability/beforeValWithSetter.kt
T
2011-09-21 17:58:44 +04:00

6 lines
97 B
Kotlin

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