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

16 lines
244 B
Plaintext
Vendored

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