2017-05-27 17:58:52 +00:00
|
|
|
error[E0597]: `foo` does not live long enough
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-40157.rs:2:53
|
2017-03-06 02:51:46 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | {println!("{:?}", match { let foo = vec![1, 2]; foo.get(1) } { x => x });}
|
2023-01-17 02:52:43 +00:00
|
|
|
| --- ^^^^^^^^^^ - `foo` dropped here while still borrowed
|
|
|
|
| | |
|
|
|
|
| | borrowed value does not live long enough
|
|
|
|
| binding `foo` declared here
|
2017-03-06 02:51:46 +00:00
|
|
|
|
2017-07-02 10:49:30 +00:00
|
|
|
error: aborting due to previous error
|
2017-03-06 02:51:46 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0597`.
|