Files
kotlin-fork/idea/testData/intentions/addBraces/addBracesForSingleStatementElseWithCommentBeneath.kt.after
T
2019-04-11 18:58:04 +03:00

11 lines
163 B
Plaintext
Vendored

fun test(b: Boolean) {
if (b) foo(0)
else {
while (true) {
foo(1)
}
}
// comment about call below
}
fun foo(i: Int) {}