Files
kotlin-fork/compiler/testData/cfg/OnlyWhileInFunctionBody.jet
T
2011-10-20 16:21:18 +02:00

11 lines
100 B
Plaintext

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