blob: 2b23070059beae9e9b700b155c091f4b6c2ce693 [file] [log] [blame]
def tail(int jjj) {
println jjj
println (<selection>fact</selection>(jjj))
}
int fact(int n) {
if (n > 0) {
return n * fact(n - 1)
}
return 1
}
-----
FAIL: Refactoring is not supported when return statement interrupts the execution flow