os-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
Text
Raw Normal View History

2017-05-27 19:58:52 +02:00
error[E0597]: `foo` does not live long enough
2018-12-25 08:56:47 -07:00
--> $DIR/issue-40157.rs:2:53
2017-03-05 23:51:46 -03:00
|
2018-02-23 03:42:32 +03: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-05 23:51:46 -03:00
error: aborting due to previous error
2017-03-05 23:51:46 -03:00
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0597`.