mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
257 B
Rust
12 lines
257 B
Rust
//@ run-rustfix
|
|
fn main() {
|
|
let msg;
|
|
match Some("Hello".to_string()) {
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
Some(ref m) => {
|
|
msg = m;
|
|
},
|
|
None => { panic!() }
|
|
}
|
|
println!("{}", *msg);
|
|
}
|