Files
kotlin-fork/idea/testData/joinLines/removeTrailingComma/whenEntry.kt
T
Dmitry Gridin f428bbb782 TrailingComma: Join Lines should remove trailing comma
#KT-34744
#KT-36084 Fixed
2020-02-06 23:55:59 +07:00

7 lines
83 B
Kotlin
Vendored

fun a() {
when (val b = 5) {
1, 2,
<caret>3,
->
}
}