http://d.puremagic.com/issues/show_bug.cgi?id=3898
Summary: access violation with associative arrays
Product: D
Version: 2.041
Platform: Other
OS/Version: Windows
Status: NEW
Severity: regression
Priority: P2
Component: druntime
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Rainer Schuetze <[email protected]> 2010-03-08 07:24:53
PST ---
the following test case crashes in version 2.041
import std.conv;
void main()
{
int[string] aa;
for(int i = 0; i < 100000; i++)
{
string s = to!string(i);
aa[s] = i;
}
}
while it worked with 2.040 and earlier. The access violation is in _aaBalance
and very much looks like a memory corruption.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------