f8039249c6
Also #KT-13612 Fixed (cherry picked from commit 7c188b3)
10 lines
144 B
Kotlin
Vendored
10 lines
144 B
Kotlin
Vendored
fun f() {
|
|
var foo = 1
|
|
try {
|
|
foo = 2
|
|
throw RuntimeException()
|
|
} catch (e: Throwable) {
|
|
println(foo)
|
|
}
|
|
}
|