On Sunday, 25 July 2021 at 11:17:26 UTC, frame wrote:

The issue is: w/o calling test() there are stack lines available but when I compile it with the test() call, no stack lines are available?

So if my usage is valid I would file a bug report - but maybe my setup is just broken. Could some Windows user please verify this issue with static linked?

```d
try
{
   throw new Exception("test");
}
catch (Throwable e)
{
   const(char)[] lines;
   foreach (n; e.info) lines ~= n;
assert(lines.length == 0); // true if test() call was compiled in
}
```

Reply via email to