Closed
Description
pub unsafe fn from_utf8_unchecked(v: &[u8]) -> &str {
std::mem::transmute(v)
}
is an example from libcore that isn't caught by clippy. It has been fixed in libcore, but it would be nice if we caught handwritten impls of similar things