11 lines
162 B
Plaintext
Vendored
11 lines
162 B
Plaintext
Vendored
// HIGHLIGHT: INFORMATION
|
|
|
|
fun test() {
|
|
var res: String? = null
|
|
|
|
<caret>res = try {
|
|
"success"
|
|
} catch (e: Exception) {
|
|
throw e
|
|
}
|
|
} |