]>
Commit | Line | Data |
---|---|---|
48663c56 | 1 | error[E0716]: temporary value dropped while borrowed |
0731742a | 2 | --> $DIR/static-region-bound.rs:10:14 |
8faf50e0 | 3 | | |
532ac7d7 | 4 | LL | let x = &id(3); |
487cf647 | 5 | | ^^^^^ creates a temporary value which is freed while still in use |
b7449926 | 6 | LL | f(x); |
48663c56 | 7 | | ---- argument requires that borrow lasts for `'static` |
8faf50e0 | 8 | LL | } |
48663c56 | 9 | | - temporary value is freed at the end of this statement |
8faf50e0 XL |
10 | |
11 | error: aborting due to previous error | |
12 | ||
48663c56 | 13 | For more information about this error, try `rustc --explain E0716`. |