[Issue 6302] Function imports in debug blocks crashes compiler

2012-01-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6302


Andrej Mitrovic  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED


--- Comment #2 from Andrej Mitrovic  2012-01-04 
07:10:47 PST ---
Fixed in 2.057, but again there's no reference to a pull request. :/

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


[Issue 6302] Function imports in debug blocks crashes compiler

2011-07-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6302


Andrej Mitrovic  changed:

   What|Removed |Added

   Severity|blocker |critical


--- Comment #1 from Andrej Mitrovic  2011-07-12 
17:45:41 PDT ---
Lowering to critical as I can use my own version statements to work around
this:

void main()
{
version (Debug)
{
import std.math;
FloatingPointControl fpc;
fpc.enableExceptions(FloatingPointControl.severeExceptions);
}
}

> dmd -version=Debug dmd_crash.d

This will work.

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