Remove variables with empty ranges from local vars table
As their ranges may intersect after dead code elimination that leads to VerifyError
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
fun box(): String {
|
||||
try {
|
||||
return "OK"
|
||||
} finally {
|
||||
if (1 == 1) {
|
||||
val z = 2
|
||||
}
|
||||
if (3 == 3) {
|
||||
val z = 4
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user