http://d.puremagic.com/issues/show_bug.cgi?id=8090
Summary: ICE: Assertion failure: 'typen->deco' on line 1703 in
file 'cast.c'
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Andrej Mitrovic <[email protected]> 2012-05-12
07:58:21 PDT ---
struct Foo { }
alias bool delegate(Foo w) DG;
DG test;
void main()
{
// bool[Foo] a;
test = (Foo w) { return w in a; };
}
ice.d(11): Error: undefined identifier a, did you mean variable w?
Assertion failure: 'typen->deco' on line 1703 in file 'cast.c'
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------