On Wednesday, 8 April 2026 at 07:33:56 UTC, Alexandru Ermicioi
wrote:
> [...]
> Small improvement: pass source exception into translated one,
> to not lose entire stack of exceptions.
```
T translate (Ein, Eout, T) (lazy T t)
{
try return t;
catch (Ein e) throw new Eout (e.msg, e.file, e.line, e);
}
```
right?