Files
kotlin/idea/testData/codeInsight/unwrapAndRemove/removeExpression/tryInBlock.kt
2013-06-21 19:32:14 +04:00

11 lines
128 B
Kotlin
Vendored

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