Comment #0 by bearophile_hugs — 2011-06-29T13:33:50Z
With DMD 2.053 this apparently goes in infinite loop:
import std.range;
void main() {
string s;
foreach (i; iota(0, s.length, 3)) {}
}
What I expect: the foreach loop to loop zero times instead.
See also bug 4603