13 lines
197 B
Plaintext
Vendored
13 lines
197 B
Plaintext
Vendored
fun doSomething() {}
|
|
|
|
fun test() {
|
|
var res: String? = null
|
|
|
|
<caret>res = try {
|
|
"success"
|
|
} catch (e: Exception) {
|
|
"failure"
|
|
} finally {
|
|
doSomething()
|
|
}
|
|
} |