]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/issue-15480.stderr
Rollup merge of #87922 - Manishearth:c-enum-target-spec, r=nagisa,eddyb
[rust.git] / src / test / ui / span / issue-15480.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/issue-15480.rs:5:10
3    |
4 LL |         &id(3)
5    |          ^^^^^ creates a temporary which is freed while still in use
6 LL |     ];
7    |      - temporary value is freed at the end of this statement
8 ...
9 LL |     for &&x in &v {
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`.