Create From Usage: Join local "vars" with their initializers

This commit is contained in:
Alexey Sedunov
2014-10-02 18:03:15 +04:00
parent 865c793561
commit 5ade563902
4 changed files with 27 additions and 13 deletions
@@ -1,7 +1,5 @@
// "Create local variable 'foo'" "true"
fun test(n: Int) {
var foo: Int
foo = n + 1
var foo = n + 1
}