On Sunday, 2 August 2020 at 11:15:53 UTC, Per Nordlöw wrote:
> The problem goes away when I remove the `pragma(inline,
> true)`-directives from the affected function.
In the meanwhile I can elide this issue via
version(D_Coverage) {} else pragma(inline, true);
in-place of
pragma(inline, true);
.