Files
kotlin-fork/idea/testData/codeInsight/unwrapAndRemove/removeCatch/catch.kt.after
T
2013-06-21 19:32:09 +04:00

13 lines
147 B
Plaintext

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