blob: 44f4b94de43d07888dd0ea80e942a071d461123d [file] [log] [blame]
// OPTION: 1
fun foo(n: Int): Int {
return try {
n / 0
} <caret>catch (e: Exception) {
-2
} finally {
}
}