Files
kotlin-fork/idea/testData/inspectionsLocal/moveVariableDeclarationIntoWhen/withComment.kt.after
T
2019-06-14 15:28:06 +07:00

10 lines
110 B
Plaintext
Vendored

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