https://issues.dlang.org/show_bug.cgi?id=22374

kdevel <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #3 from kdevel <[email protected]> ---
(In reply to Paul Backus from comment #0)
> As of DMD 2.097.2, compiling the following program with the flag
> `-checkaction=context` results in a linker error.
> 
> ---
> import std;
> 
> void main()
> {
>     assert(0);
> }
> ---
> 

WORKSFORME 

$ dmd --version
DMD64 D Compiler v2.109.1
Copyright (C) 1999-2024 by The D Language Foundation, All Rights Reserved
written by Walter Bright
$ cat asszer.d 
import std;

void main()
{
    assert(0);
}
$ dmd asszer.d
$ ./asszer
[email protected](5): Assertion failure
----------------
??:? _d_assertp [0x4bbf14]
??:? _Dmain [0x4b30e0]

--

Reply via email to