http://d.puremagic.com/issues/show_bug.cgi?id=4491
Don <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |diagnostic CC| |[email protected] --- Comment #1 from Don <[email protected]> 2010-07-21 14:32:06 PDT --- You need to add an 'L' suffix when it's larger than int.max, and a 'U' suffix when it's unsigned. import std.stdio; void main() { ulong t = 18446744073709551615UL; printf("%llu\n", t); } The error message should make this clearer. Marking as a 'diagnostic' bug. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
