blob: 7b09fad927fdf75040fea2d118cea45a6db1da7f [file] [log] [blame]
Chariseeb1d32802022-09-22 15:38:41 +00001// run-rustfix
Inna Palantff3f07a2019-07-11 16:15:26 -07002fn main() {
3 let msg;
4 match Some("Hello".to_string()) {
Matthew Maurer7ae0b872019-09-05 14:14:26 -07005 //~^ ERROR temporary value dropped while borrowed
Inna Palantff3f07a2019-07-11 16:15:26 -07006 Some(ref m) => {
Inna Palantff3f07a2019-07-11 16:15:26 -07007 msg = m;
8 },
9 None => { panic!() }
10 }
11 println!("{}", *msg);
12}