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

15 lines
224 B
Kotlin
Vendored

fun test(n: Int) {
var res: String? = null
if (n == 1) {
<caret>try {
res = "success"
} catch (e: Exception) {
throw e
}
}
else {
res = "else"
}
}