rust/tests/ui/borrowck/borrowck-issue-2657-2.fixed

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
189 B
Rust
Raw Normal View History

2022-12-09 15:01:41 -06:00
// run-rustfix
fn main() {
let x: Option<Box<_>> = Some(Box::new(1));
match x {
Some(ref y) => {
let _b = y; //~ ERROR cannot move out
}
_ => {}
}
}