Files
kotlin-fork/idea/testData/inspectionsLocal/moveVariableDeclarationIntoWhen/withNewLine.kt.after
T

10 lines
89 B
Plaintext
Vendored

fun foo() {
when (1) {
1 -> {
}
else -> {
}
}
}