[Issue 7646] bug in code sample and unittest

2012-06-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7646 josvanu...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 7646] bug in code sample and unittest

2012-03-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7646 --- Comment #2 from josvanu...@gmail.com 2012-03-11 04:24:44 PDT --- ulong fib (ulong n) { alias memoize!fib mfib; return n < 2 ? n : mfib(n - 2) + mfib(n - 1); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?t

[Issue 7646] bug in code sample and unittest

2012-03-05 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7646 josvanu...@gmail.com changed: What|Removed |Added Priority|P2 |P5 -- Configure issuemail: http

[Issue 7646] bug in code sample and unittest

2012-03-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7646 --- Comment #1 from josvanu...@gmail.com 2012-03-04 12:08:27 PST --- (In reply to comment #0) > I think the code should be (n <= 2): > > ulong fib(ulong n) { > alias memoize!fib mfib; > return n <= 2 ? 1 : mfib(n - 2) + mf