Registered 'change variable mutability' fix for 'val reassignment' error

This commit is contained in:
svtk
2011-11-03 18:30:28 +04:00
parent 92a3fef06b
commit 2eb7835ae1
9 changed files with 71 additions and 1 deletions
@@ -0,0 +1,8 @@
// "Make variable mutable" "true"
class A() {
val a = 1
fun foo() {
<caret>a = 5
}
}