rust/tests/ui/span/issue-40157.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
608 B
Plaintext
Raw Normal View History

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 });}
| --- ^^^^^^^^^^ - `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
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`.