November 07, 2014
https://issues.dlang.org/show_bug.cgi?id=7232

Nick Treleaven <ntrel-pub@mybtinternet.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ntrel-pub@mybtinternet.com

--- Comment #5 from Nick Treleaven <ntrel-pub@mybtinternet.com> ---
There's a missing line number with -w here also (recent dmd):

import std.stdio;
void f()
{
    throw new Exception("msg");
    scope(exit) write("5");
    scope(success) write("6");
}

--