RFC: Change what assert does on error

Timon Gehr timon.gehr at gmx.ch
Fri Jul 4 21:21:01 UTC 2025


On 7/4/25 09:24, Walter Bright wrote:
> 
> 2. code that is not executed is not vulnerable to attack

```d
void foo(){
     openDoor();
     performWork();
     scope(exit){
         closeDoor();
         lockDoor();
     }
}
```


More information about the Digitalmars-d mailing list