https://issues.dlang.org/show_bug.cgi?id=3208

Dmitry Olshansky <dmitry.o...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |dmitry.o...@gmail.com
         Resolution|---                         |WORKSFORME

--- Comment #5 from Dmitry Olshansky <dmitry.o...@gmail.com> ---
This now works but setAssertHandler is deprecated, heh:

//
import core.exception;

nothrow void handleAssertion(string file, size_t line, string msg = null) {}

static this() 
{ 
    setAssertHandler( &handleAssertion  ); 
}

void main() 
{ 
    assert(false); 
}

--

Reply via email to