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

7 lines
91 B
Kotlin
Vendored

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