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

11 lines
139 B
Kotlin
Vendored

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