// OPTION: 1 fun foo(n: Int): Int { try { n / 0 } catch (e: ArithmeticException) { val m = -1 m } catch (e: Exception) { -2 } finally { println("finally") } return 0 }