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

16 lines
250 B
Kotlin
Vendored

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