Comment by pjmlp

2 days ago

Even within Rust some folks do this to themselves, misusing unsafe with code that is 100% safe Rust, only to taint code that should only be called in specific cases, completely unrelated to memory safety.

I never seen this happen with GC/RC languages that also support unsafe code blocks.