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

11 lines
162 B
Plaintext
Vendored

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