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

10 lines
103 B
Plaintext
Vendored

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