Files
kotlin-fork/idea/testData/inspectionsLocal/moveVariableDeclarationIntoWhen/notApplicableMultyLine.kt
T
2019-04-24 20:12:44 +07:00

11 lines
160 B
Kotlin
Vendored

// PROBLEM: none
fun foo(): Int {
val a<caret> = if (true) true
else false
return when (a) {
true -> 42
else -> null
} ?: 55
}