rust/src/test/ui/span/issue-40157.stderr

16 lines
844 B
Plaintext
Raw Normal View History

2017-05-27 12:58:52 -05:00
error[E0597]: `foo` does not live long enough
2017-12-13 19:27:23 -06:00
--> $DIR/issue-40157.rs:12:53
2017-03-05 20:51:46 -06:00
|
12 | {println!("{:?}", match { let foo = vec![1, 2]; foo.get(1) } { x => x });}
2017-12-13 19:27:23 -06:00
| -----------------------------------------------^^^----------------------
2017-03-05 20:51:46 -06:00
| | | |
| | | `foo` dropped here while still borrowed
2017-12-13 19:27:23 -06:00
| | borrowed value does not live long enough
2017-03-05 20:51:46 -06:00
| borrowed value needs to live until here
|
= 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 20:51:46 -06:00
error: aborting due to previous error
2017-03-05 20:51:46 -06:00
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0597"