Added 'change to backing field' fix

This commit is contained in:
svtk
2011-11-01 19:00:57 +04:00
parent 41c9b7e414
commit a3ef9f9b50
9 changed files with 69 additions and 5 deletions
@@ -0,0 +1,5 @@
// "Make variable mutable" "true"
class A() {
var a: Int = 0
<caret>set(v: Int) {}
}
@@ -0,0 +1,5 @@
// "Make variable mutable" "true"
class A() {
val a: Int = 0
<caret>set(v: Int) {}
}