Files
kotlin-fork/idea/testData/inspectionsLocal/moveVariableDeclarationIntoWhen/notApplicableVar.kt
T
2019-02-14 17:45:53 +03:00

10 lines
125 B
Kotlin
Vendored

// PROBLEM: none
fun foo() {
var a<caret> = 1
when (a) {
1 -> {
}
else -> {
}
}
}