RFC: Change what assert does on error

monkyyy crazymonkyyy at gmail.com
Fri Jul 4 07:44:47 UTC 2025


On Friday, 4 July 2025 at 06:29:26 UTC, Walter Bright wrote:
> not acceptable.

```d
import std;
unittest{
	try{assert(0);}
	catch(Error){
		"hi".writeln;
	}
}
```


More information about the Digitalmars-d mailing list