2017-05-27 19:58:52 +02:00
|
|
|
error[E0597]: `foo` does not live long enough
|
2017-12-13 17:27:23 -08:00
|
|
|
--> $DIR/issue-40157.rs:12:53
|
2017-03-05 23:51:46 -03:00
|
|
|
|
|
|
|
|
12 | {println!("{:?}", match { let foo = vec![1, 2]; foo.get(1) } { x => x });}
|
2017-12-13 17:27:23 -08:00
|
|
|
| -----------------------------------------------^^^----------------------
|
2017-03-05 23:51:46 -03:00
|
|
|
| | | |
|
|
|
|
| | | `foo` dropped here while still borrowed
|
2017-12-13 17:27:23 -08:00
|
|
|
| | borrowed value does not live long enough
|
2017-03-05 23:51:46 -03:00
|
|
|
| borrowed value needs to live until here
|
|
|
|
|
|
2017-11-21 19:48:35 +00:00
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
2017-03-05 23:51:46 -03:00
|
|
|
|
2017-07-02 13:49:30 +03:00
|
|
|
error: aborting due to previous error
|
2017-03-05 23:51:46 -03:00
|
|
|
|