fix UnusedVariables.jet test

(unintentional variable redeclaration)
This commit is contained in:
Stepan Koltsov
2011-11-25 17:35:41 +04:00
parent 28311a8a99
commit a70487b055
@@ -50,7 +50,7 @@ class MyTest() {
i = <!UNUSED_VALUE!>456<!>;
}
fun testWhile(a : Any?, b : Any?) {
fun testWhile() {
var a : Any? = true
var b : Any? = 34
while (a is Any) {
@@ -139,4 +139,4 @@ fun testBackingFieldsNotMarked() {
}
}
fun doSmth(i : Int) {}
fun doSmth(i : Int) {}