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