September 12, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6651

           Summary: [SafeD] Exception/Throwable constructors are not @safe
                    ?
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: druntime
        AssignedTo: nobody@puremagic.com
        ReportedBy: dmitry.olsh@gmail.com


--- Comment #0 from Dmitry Olshansky <dmitry.olsh@gmail.com> 2011-09-12 06:17:30 PDT ---
@safe class NewException : Exception
{
    ///
    this(string msg, string file = __FILE__, size_t line = __LINE__)
    {
        super(msg, file, line);
    }
}

Results in:
safe.d(7): Error: safe function 'this' cannot call system function 'this'

The funny thing is that Exception still can be created/thrown in @safe functions, e.g. this compiles:

@safe void f()
{
    new Exception("blah");
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
July 02, 2013
http://d.puremagic.com/issues/show_bug.cgi?id=6651


hsteoh@quickfur.ath.cx changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |hsteoh@quickfur.ath.cx
         Resolution|                            |WORKSFORME


--- Comment #1 from hsteoh@quickfur.ath.cx 2013-07-02 09:35:05 PDT ---
This bug seems no longer present in git HEAD. Please reopen if there's still a problem.

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