JVM_IR: Add more local variable tests for finally code.

This commit is contained in:
Mads Ager
2021-04-27 17:19:07 +02:00
committed by Mikhael Bogdanov
parent 6095d8a7fa
commit 0c77565104
10 changed files with 268 additions and 3 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ fun compute(): String {
}
}
} finally {
x = "OK"
x = "OK" // TODO: `e` should not be visible here.
}
return "FAIL"
}