15 lines
224 B
Kotlin
Vendored
15 lines
224 B
Kotlin
Vendored
fun test(n: Int) {
|
|
var res: String? = null
|
|
|
|
if (n == 1) {
|
|
<caret>try {
|
|
res = "success"
|
|
} catch (e: Exception) {
|
|
throw e
|
|
}
|
|
}
|
|
else {
|
|
res = "else"
|
|
}
|
|
}
|