On 4/1/13, Walter Bright <[email protected]> wrote: > On 4/1/2013 4:08 AM, Lars T. Kyllingstad wrote: >> It's time to clean up this mess. > > > As for why finally blocks are not executed for Error exceptions
They seem to be executed:
void main()
{
try
{
throw new Error("");
}
finally
{
assert(0);
}
}
This will throw an AssertError.
