mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
16 lines
205 B
Plaintext
Vendored
16 lines
205 B
Plaintext
Vendored
// OPTION: 1
|
|
fun foo(n: Int): Int {
|
|
try {
|
|
n / 0
|
|
}
|
|
catch (e: ArithmeticException) {
|
|
val m = -1
|
|
m
|
|
}
|
|
catch (e: Exception) {
|
|
-2
|
|
}<caret>
|
|
|
|
return 0
|
|
}
|