]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/promoted_const_fn_fail.stderr
Rollup merge of #62257 - RalfJung:miri-c-str, r=estebank
[rust.git] / src / test / ui / consts / const-eval / promoted_const_fn_fail.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/promoted_const_fn_fail.rs:20:27
3    |
4 LL |     let x: &'static u8 = &(bar() + 1);
5    |            -----------    ^^^^^^^^^^^ creates a temporary 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`.