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

8 lines
89 B
Kotlin
Vendored

// PROBLEM: none
var a = 5
fun foo() = <caret>if (true) {
a = 6
} else {
a = 8
}