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

5 lines
111 B
Kotlin
Vendored

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