Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/expressions/lambdaInWhile.kt
T
2020-05-09 22:08:02 +02:00

8 lines
106 B
Kotlin
Vendored

// MOVE: down
fun test(i: Int) {
<caret>println()
while (i == 1) {
run {
}
}
}