Files
kotlin-fork/idea/testData/quickfix/foldTryCatch/emptyFinally.kt
T
Dmitry Gridin 11a3482970 tests: apply official code style
#KT-38632 Fixed
2020-05-07 12:36:44 +00:00

11 lines
188 B
Kotlin
Vendored

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