blob: 5cd83d2a82cfd09bcdfd2687b3ef1c605e3e20fb [file]
// ISSUE: KT-42995
fun test() {
val a: Int
try {
run {
a = 1
a.inc()
throw Exception("hmm")
}
} catch (e: Exception) {
<!VAL_REASSIGNMENT!>a<!> = 2
a.inc()
}
}