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

11 lines
124 B
Kotlin
Vendored

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