15 lines
208 B
Kotlin
Vendored
15 lines
208 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR
|
|
fun box(): String {
|
|
try {
|
|
return "OK"
|
|
if (1 == 1) {
|
|
val z = 2
|
|
}
|
|
if (3 == 3) {
|
|
val z = 4
|
|
}
|
|
} finally {
|
|
|
|
}
|
|
}
|