https://issues.dlang.org/show_bug.cgi?id=13016
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from [email protected] --- Note that array indexes are size_t, that are implicitly convertible to int only on 32 bit systems. This program compiles and works on 32 bits. And on 64 bit systems it can't work, you have to write "foreach (int i, n; arr)" or to use a cast. --
