2023-09-18 10:30:07 -05:00
|
|
|
error[E0716]: temporary value dropped while borrowed
|
2024-04-19 10:54:41 -05:00
|
|
|
--> $DIR/promotion.rs:16:37
|
2023-09-18 10:30:07 -05:00
|
|
|
|
|
|
|
|
LL | let _x: &'static i32 = &div_by_zero();
|
|
|
|
| ------------ ^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
|
|
|
|
| |
|
|
|
|
| type annotation requires that borrow lasts for `'static`
|
|
|
|
LL |
|
|
|
|
LL | }
|
|
|
|
| - temporary value is freed at the end of this statement
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-09-18 10:30:07 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0716`.
|