]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/const-eval/promoted_const_fn_fail_deny_const_err.stderr
Rollup merge of #107146 - compiler-errors:unsizing-params, r=cjgillot
[rust.git] / tests / ui / consts / const-eval / promoted_const_fn_fail_deny_const_err.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/promoted_const_fn_fail_deny_const_err.rs:18:27
3    |
4 LL |     let x: &'static u8 = &(bar() + 1);
5    |            -----------    ^^^^^^^^^^^ creates a temporary value which is freed while still in use
6    |            |
7    |            type annotation requires that borrow lasts for `'static`
8 ...
9 LL | }
10    | - temporary value is freed at the end of this statement
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0716`.