18 lines
313 B
Plaintext
Vendored
18 lines
313 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun test() {
|
|
var res: String? = null
|
|
|
|
<caret>res = try {
|
|
try {
|
|
"success"
|
|
} catch (e: Exception) {
|
|
TODO()
|
|
}
|
|
} catch (e: Exception) {
|
|
try {
|
|
TODO()
|
|
} catch (e: Exception) {
|
|
"failure"
|
|
}
|
|
}
|
|
} |