On 8/24/2023 1:51 PM, Richard (Rikki) Andrew Cattermole wrote:
> ```d
> void func() {
> static assert(false);
> }
> ```
>
> As long as you don't call func, it won't fire.
The static assert will fail at compile time. `assert(0)` will fail at run time.