Open
Description
On this function:
pub fn copy(src: &[u8], dst: &mut [u8]) {
assert!(src.len() == dst.len());
for i in 0..src.len() {
dst[i] = src[i];
}
}
I get output that looks like this in Terminal.app on Mac. In particular, note that cargo asm
didn't properly reset the terminal color after setting it to red on the last line.