]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/issue-15480.stderr
Rollup merge of #106441 - mllken:abstract-socket-noref, r=joshtriplett
[rust.git] / tests / ui / span / issue-15480.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/issue-15480.rs:6:10
3    |
4 LL |         &id(3)
5    |          ^^^^^ creates a temporary value 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 help: consider using a `let` binding to create a longer lived value
13    |
14 LL ~     let binding = id(3);
15 LL ~     let v = vec![
16 LL ~         &binding
17    |
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0716`.