Comment #0 by bearophile_hugs — 2012-03-25T16:18:41Z
Wrong D2 code (it contains a simple typing mistake I have done, a dot instead of a comma):
import std.algorithm, std.range. std.math;
void main() {
iota(10);
}
DMD 2.059head crashes and shows:
Assertion failure: 'p->isPackage()' on line 1173 in file 'module.c'
Comment #3 by bearophile_hugs — 2013-11-05T02:52:45Z
I am seeing an ICE:
import std.algorithm, std.range. std.math;
void main() {}
Dmd 2.064rc1 gives me:
Assertion failure: 'pkg' on line 1120 in file 'module.c'
Comment #4 by k.hara.pg — 2013-11-11T18:10:14Z
(In reply to comment #3)
> I am seeing an ICE:
>
> import std.algorithm, std.range. std.math;
> void main() {}
>
>
> Dmd 2.064rc1 gives me:
>
> Assertion failure: 'pkg' on line 1120 in file 'module.c'
It's 2.064 regression.
https://github.com/D-Programming-Language/dmd/pull/2743
Comment #5 by github-bugzilla — 2013-11-12T18:13:50Z