Files
kotlin-fork/idea/testData/quickfix/variables/changeMutability/valReassignmentPropertyConstructorParameter.kt.after
T
2015-12-17 11:11:31 +03:00

7 lines
94 B
Plaintext
Vendored

// "Make variable mutable" "true"
class A(var a: Int) {
fun foo() {
a = 5
}
}