mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:13:48 +00:00
14 lines
283 B
Plaintext
14 lines
283 B
Plaintext
// 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);
|
|
}
|