Files
kotlin-fork/idea/testData/cfg/OnlyWhileInFunctionBody.jet
T

11 lines
100 B
Plaintext

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