Files
kotlin-fork/compiler/testData/debug/localVariables/tryFinally17.kt
T
2023-12-18 21:42:35 +00:00

27 lines
425 B
Kotlin
Vendored

// FILE: test.kt
fun box(): String {
try {
val x = "x"
throw RuntimeException(x)
} finally {
return "OK"
}
return "FAIL"
}
// EXPECTATIONS JVM_IR
// test.kt:8 box:
// test.kt:9 box:
// test.kt:10 box: x:java.lang.String="x":java.lang.String
// test.kt:12 box:
// EXPECTATIONS JS_IR
// test.kt:9 box:
// test.kt:10 box: x="x":kotlin.String
// test.kt:12 box: x="x":kotlin.String