blob: abf497602a49f278b4c5745903f9c4df18e22b9e [file] [log] [blame]
def i = 6
while (true) {
println "preved"
i = 42
if (i > 0) {
break;
} else {
i = 8
<begin>continue;<end>
}
}
println i
-----
FAILED: Refactoring is not supported when return statement interrupts the execution flow