Files
kotlin-fork/idea/testData/intentions/addBraces/whenWithComment.kt
T
2018-02-27 18:25:22 +03:00

8 lines
99 B
Kotlin
Vendored

fun foo() {}
fun test(a: Int) {
when (a) {
<caret>1 -> /* aaa */ foo() // bbb
}
}