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,5 @@
// "Make variable mutable" "true"
fun foo() {
val a = 1
<caret>a = 3
}