Bug creation and email sending has been disabled, file new bugs at gcc.gnu.org/bugzilla
Bug 133 - ICE: Appending a delegate to an array
Summary: ICE: Appending a delegate to an array
Status: RESOLVED FIXED
Alias: None
Product: GDC
Classification: Unclassified
Component: gdc (show other bugs)
Version: development
Hardware: All All
: --- normal
Assignee: Iain Buclaw
URL:
Depends on:
Blocks:
 
Reported: 2014-06-14 00:45 CEST by Iain Buclaw
Modified: 2014-06-14 01:23 CEST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Iain Buclaw 2014-06-14 00:45:14 CEST
Minimum Testcase:
---
void delegate()[] workerTasks;

void assign(void delegate() del)
{
    workerTasks ~= del;
}
---

This blocks building vibe.d with gdc.