e9c9d5731e
This is in preparation for enabling the tests for FIR which will be easier to do when the tests are on the new infrastructure.
55 lines
1.7 KiB
Kotlin
Vendored
55 lines
1.7 KiB
Kotlin
Vendored
// The old backend has `y` and `i` visible on the finally block.
|
|
// IGNORE_BACKEND: JVM
|
|
// WITH_RUNTIME
|
|
// FILE: test.kt
|
|
|
|
inline fun f(block: () -> Unit) {
|
|
try {
|
|
val z = 32
|
|
for (j in 0 until 1) {
|
|
throw RuntimeException("$z $j")
|
|
}
|
|
} catch (e: Exception) {
|
|
block()
|
|
}
|
|
}
|
|
|
|
var x: String = ""
|
|
|
|
fun compute(): String {
|
|
try {
|
|
val y = 42
|
|
for (i in 0 until 1) {
|
|
f {
|
|
return "NON_LOCAL_RETURN"
|
|
}
|
|
}
|
|
} finally {
|
|
x = "OK"
|
|
}
|
|
return "FAIL"
|
|
}
|
|
|
|
fun box() {
|
|
val result = compute()
|
|
val localX = x
|
|
}
|
|
|
|
// EXPECTATIONS
|
|
// test.kt:34 box:
|
|
// test.kt:20 compute:
|
|
// test.kt:21 compute:
|
|
// test.kt:22 compute: y:int=42:int
|
|
// test.kt:23 compute: y:int=42:int, i:int=0:int
|
|
// test.kt:7 compute: y:int=42:int, i:int=0:int, $i$f$f:int=0:int
|
|
// test.kt:8 compute: y:int=42:int, i:int=0:int, $i$f$f:int=0:int
|
|
// test.kt:9 compute: y:int=42:int, i:int=0:int, $i$f$f:int=0:int, z$iv:int=32:int
|
|
// test.kt:10 compute: y:int=42:int, i:int=0:int, $i$f$f:int=0:int, z$iv:int=32:int, j$iv:int=0:int
|
|
// test.kt:12 compute: y:int=42:int, i:int=0:int, $i$f$f:int=0:int
|
|
// test.kt:13 compute: y:int=42:int, i:int=0:int, $i$f$f:int=0:int, e$iv:java.lang.Exception=java.lang.RuntimeException
|
|
// test.kt:24 compute: y:int=42:int, i:int=0:int, $i$f$f:int=0:int, e$iv:java.lang.Exception=java.lang.RuntimeException, $i$a$-f-TestKt$compute$1:int=0:int
|
|
// test.kt:28 compute:
|
|
// test.kt:34 box:
|
|
// test.kt:35 box: result:java.lang.String="NON_LOCAL_RETURN":java.lang.String
|
|
// test.kt:36 box: result:java.lang.String="NON_LOCAL_RETURN":java.lang.String, localX:java.lang.String="OK":java.lang.String
|