// "Lift assignment out of 'try' expression" "true" // WITH_RUNTIME fun foo() { val x: Int try { x = 1 } catch (e: Exception) { x = 2 } finally {} }