blob: 3d4c128d93763473f5d5b4877c135bae16cfd919 [file]
fun test(x: Int, y: Int): String {
var result: String
if (x == 6) {
if (y == 6) {
result = "a"
} else {
result = "b"
}
} else {
result = "c"
}
return result
}
fun infiniteLoop() {
while(true) {}
}
// 2 GOTO L6
// 1 GOTO L0