Files
kotlin-fork/compiler/testData/cfg/controlStructures/OnlyWhileInFunctionBody.kt
T

11 lines
100 B
Kotlin
Vendored

fun main() {
while(0 > 1) {
2
}
}
fun dowhile() {
do {return}
while(0 > 1)
}