https://issues.dlang.org/show_bug.cgi?id=19705
Boris Carvajal <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from Boris Carvajal <[email protected]> --- I made a change that improve these cases. https://github.com/dlang/dmd/pull/11303 Now: static foreach (i; 0..10000) {} is faster than: alias A = generate!10000; static foreach (i; A) {} as it should be. --
