]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-borrowed-uniq-rvalue.stderr
Sync portable-simd to rust-lang/portable-simd@72df4c45056a8bc0d1b3f06fdc828722177f0763
[rust.git] / src / test / ui / borrowck / borrowck-borrowed-uniq-rvalue.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/borrowck-borrowed-uniq-rvalue.rs:10:28
3    |
4 LL |     buggy_map.insert(42, &*Box::new(1));
5    |                            ^^^^^^^^^^^ - temporary value is freed at the end of this statement
6    |                            |
7    |                            creates a temporary which is freed while still in use
8 ...
9 LL |     buggy_map.insert(43, &*tmp);
10    |     --------------------------- borrow later used here
11    |
12    = note: consider using a `let` binding to create a longer lived value
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0716`.