Wait hang on: your code hit a case that you know means something like memory corruption happened, and you want it to keep executing? If there's memory corruption, I want the program to stop ASAP so that it does as little damage as possible!
FYI Rust panics and illegal `[]` accesses will tell you the file & line number where it happened.
Some people do indeed want this as far as I know. I believe it is what the Linux kernel wants for example. I'm not aware of any other projects that want the same thing.
FYI Rust panics and illegal `[]` accesses will tell you the file & line number where it happened.