http://d.puremagic.com/issues/show_bug.cgi?id=7512
Summary: Associative arrays with dstring as key do not work
correctly
Product: D
Version: D2
Platform: All
OS/Version: Linux
Status: NEW
Severity: major
Priority: P2
Component: druntime
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from [email protected] 2012-02-15 11:56:43 PST ---
Test case:
void main() {
int[dstring] map = ["abc"d: 123];
foreach (key, val; map) {
assert(map[key] == val); // throws RangeError ?!
}
}
Changing dstring to string fixes the problem.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------