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

9 lines
134 B
Kotlin
Vendored

fun test() {
if (false)<caret>
while (true)
foo(1)
//comment about foo(2)
foo(2)
}
fun foo(i: Int) {}