Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
fn main() {
let s = "Hello";
let first = s.bytes();
let second = first.clone();
assert_eq!(first.collect::<Vec<u8>>(), second.collect::<Vec<u8>>())
}