https://issues.dlang.org/show_bug.cgi?id=11466
--- Comment #3 from bearophile_hugs at eml.cc ---
(In reply to hsteoh from comment #2)
> So this bug can be closed?
No, it can't because this fails still:
import std.range: zip;
void main() nothrow {
foreach (p; zip([10], [20])) {}
}
--