Files
kotlin-fork/idea/testData/indentationOnNewline/controlFlowConstructions/DoWhile7.kt
T
Dmitry Gridin 145b2c260b indentationOnNewLine: sort tests
Part of #KT-22211
2020-06-15 16:25:56 +07:00

6 lines
83 B
Kotlin
Vendored

fun some() {
do println() while (true)
println()
while (true)<caret>
}