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

7 lines
86 B
Kotlin
Vendored

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