rust/tests/ui/span/borrowck-ref-into-rvalue.fixed

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

14 lines
283 B
Rust
Raw Normal View History

// run-rustfix
fn main() {
let msg;
let binding = Some("Hello".to_string());
match binding {
//~^ ERROR temporary value dropped while borrowed
Some(ref m) => {
msg = m;
},
None => { panic!() }
}
println!("{}", *msg);
}