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