Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn main() {
let x = vec![1];
let y = x;
x; //~ ERROR use of moved value
let mut y = x;
let x = (Some(vec![1]), ());
match x {
(Some(y), ()) => {},
_ => {},
}
x; //~ ERROR use of partially moved value