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