13 lines
204 B
Kotlin
Vendored
13 lines
204 B
Kotlin
Vendored
// PROBLEM: none
|
|
fun doSomething() {}
|
|
|
|
fun test() {
|
|
var res: String? = null
|
|
|
|
<caret>try {
|
|
res = "success"
|
|
} catch (e: Exception) {
|
|
res = "failure"
|
|
doSomething()
|
|
}
|
|
} |