let foo = [1, 2, 3]; unsafe { *foo.get_unchecked_mut(4) = 5; }
Hmmm... where could the oob access possibly be I can't tell
You can prevent unsafe from being used in a repo with linter rules.
Hmmm... where could the oob access possibly be I can't tell