D issues are now tracked on GitHub. This Bugzilla instance remains as a read-only archive.
Issue 5440 - ICE(template.c): when struct AssociativeArray is missing from object.d
Summary: ICE(template.c): when struct AssociativeArray is missing from object.d
Status: RESOLVED FIXED
Alias: None
Product: D
Classification: Unclassified
Component: dmd (show other issues)
Version: D2
Hardware: All All
: P2 normal
Assignee: No Owner
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-01-09 11:52 UTC by Iain Buclaw
Modified: 2011-08-10 00:42 UTC (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description Iain Buclaw 2011-01-09 11:52:28 UTC
Example to reproduce is to comment out the struct in object.d and try compiling:

int[int] foo;
foreach(k; foo.keys) {}


Regards