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

8 lines
91 B
Plaintext
Vendored

fun foo() {}
fun test() {
do {
/* aaa */ foo() // comment
} while(true)
}