Files
kotlin-fork/idea/testData/quickfix/foldTryCatch/emptyFinally.kt.after
T

11 lines
177 B
Plaintext
Vendored

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