]> git.proxmox.com Git - rustc.git/blob - tests/ui/consts/const-eval/const-eval-intrinsic-promotion.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / 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`.