Nick Sabalausky <a at a.a> wrote:
> try {
> return true;
> } finally {
> return false;
> }
>
>
> try {
> throw new AssertionError();
> } finally {
> return false;
> }
>
> I wonder how D handles those
Error: return statements cannot be in finally, scope(exit) or
scope(success) bodies
--
Simen