Files
kotlin-fork/idea/testData/codeInsight/unwrapAndRemove/removeCatch/catch.kt.after
T

11 lines
139 B
Plaintext
Vendored

// OPTION: 1
fun foo(n: Int): Int {
return try {
n / 0
} <caret>catch (e: Exception) {
-2
} finally {
}
}