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