2019-04-22 02:40:08 -05:00
|
|
|
error[E0716]: temporary value dropped while borrowed
|
2022-01-19 09:24:49 -06:00
|
|
|
--> $DIR/transmute-const-promotion.rs:4:37
|
2018-08-20 13:51:48 -05:00
|
|
|
|
|
|
|
|
LL | let x: &'static u32 = unsafe { &mem::transmute(3.0f32) };
|
2022-10-20 10:43:27 -05:00
|
|
|
| ------------ ^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
|
2019-04-22 02:40:08 -05:00
|
|
|
| |
|
|
|
|
| type annotation requires that borrow lasts for `'static`
|
2019-03-09 06:03:44 -06:00
|
|
|
LL |
|
2018-08-20 13:51:48 -05:00
|
|
|
LL | }
|
2019-04-22 02:40:08 -05:00
|
|
|
| - temporary value is freed at the end of this statement
|
2018-08-20 13:51:48 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2019-04-22 02:40:08 -05:00
|
|
|
For more information about this error, try `rustc --explain E0716`.
|