]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/const-eval-intrinsic-promotion.stderr
Rollup merge of #101655 - dns2utf8:box_docs, r=dtolnay
[rust.git] / src / test / ui / consts / const-eval / const-eval-intrinsic-promotion.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/const-eval-intrinsic-promotion.rs:5:10
3    |
4 LL |     let x: &'static usize =
5    |            -------------- type annotation requires that borrow lasts for `'static`
6 LL |         &std::intrinsics::size_of::<i32>();
7    |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
8 LL | }
9    | - temporary value is freed at the end of this statement
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0716`.