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

10 lines
162 B
Kotlin
Vendored

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