[Issue 6177] Regression(2.053): Insert in associative array: Internal error: backend/cgcs.c 162

2011-10-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6177


Richard Webb  changed:

   What|Removed |Added

 CC||we...@beardmouse.org.uk


--- Comment #8 from Richard Webb  2011-10-20 08:15:12 
PDT ---
I'm getting this when trying to compile the Juno library with the latest DMD
source.
The crash there seems to reduce to:


struct foo
{
~this()
{

}
}

void bar(foo[] args...)
{

}

void main()
{
bar();
}


It's ok if i compile it with -O.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 6177] Regression(2.053): Insert in associative array: Internal error: backend/cgcs.c 162

2011-08-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6177


Trass3r  changed:

   What|Removed |Added

 CC||mrmoc...@gmx.de


--- Comment #7 from Trass3r  2011-08-11 18:15:50 PDT ---
I'm getting the very same ICE with the following code:

struct F
{
~this(){}
}

struct G
{
this(F[] p...) {}
}

void main()
{
F c;
G g = G(c);
}

DMD v2.054

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---