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

10 lines
111 B
Plaintext
Vendored

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