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

15 lines
725 B
Text
Raw Normal View History

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