Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn main() {
let y: Box<isize> = 42.into();
let mut x: Box<isize>;
loop {
println!("{}", y);
x = y; //~ ERROR use of moved value
x.clone();
}