https://issues.dlang.org/show_bug.cgi?id=14965
Andrea Fontana <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #4 from Andrea Fontana <[email protected]> --- Recursive example: auto guessreturn(uint i) { if (i == 0) return 0; else return guessreturn(i-1); } --
