]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-var-type-out-of-scope.stderr
Rollup merge of #106043 - c410-f3r:moar-errors, r=petrochenkov
[rust.git] / src / test / ui / regions / regions-var-type-out-of-scope.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/regions-var-type-out-of-scope.rs:9:14
3    |
4 LL |         x = &id(3);
5    |              ^^^^^- temporary value is freed at the end of this statement
6    |              |
7    |              creates a temporary value which is freed while still in use
8 LL |         assert_eq!(*x, 3);
9    |         ----------------- borrow later used here
10    |
11    = note: consider using a `let` binding to create a longer lived value
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0716`.