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

11 lines
110 B
Kotlin
Vendored

fun foo() {
val a<caret> = 1
when (a) {
1 -> {
}
else -> {
}
}
}