Files
kotlin-fork/idea/testData/inspectionsLocal/liftOut/tryToAssignment/basic.kt
T
2017-07-11 15:14:30 +03:00

11 lines
162 B
Kotlin
Vendored

// HIGHLIGHT: INFORMATION
fun test() {
var res: String? = null
<caret>try {
res = "success"
} catch (e: Exception) {
throw e
}
}