rust/src/test/ui/borrowck/borrowck-borrowed-uniq-rvalue.stderr

17 lines
645 B
Plaintext
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0597]: borrowed value does not live long enough
2018-12-25 08:56:47 -07:00
--> $DIR/borrowck-borrowed-uniq-rvalue.rs:10:27
2018-08-08 14:28:26 +02:00
|
LL | buggy_map.insert(42, &*Box::new(1)); //~ ERROR borrowed value does not live long enough
| ^^^^^^^^^^^^ - borrowed value dropped here while still borrowed
| |
| borrowed value does not live long enough
...
LL | }
| - borrowed value needs to live until here
|
= note: consider using a `let` binding to increase its lifetime
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.