Files
kotlin-fork/idea/testData/intentions/addBraces/addBracesForElseWithCommentInsideWhen.kt
T

8 lines
152 B
Kotlin
Vendored

fun test(x: Int, b: Boolean) {
val bar = when (x) {
1 ->
if (b) 1 else<caret> 2 // comment
else ->
0
}
}