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

8 lines
116 B
Plaintext
Vendored

fun foo() {}
fun test(b: Boolean) {
if (b) {
foo() /* if comment */
} else foo() // else comment
}