Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn take(_x: Box<isize>) {}
fn main() {
let x: Box<isize> = Box::new(25);
loop {
take(x); //~ ERROR use of moved value: `x`
}