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