Files
kotlin-fork/idea/testData/inspectionsLocal/liftOut/tryToAssignment/usedAsExpression.kt
T
2020-02-12 16:17:25 +03:00

8 lines
99 B
Kotlin
Vendored

// PROBLEM: none
var a = 5
fun foo() = <caret>try {
a = 6
} catch (e: Exception) {
a = 8
}