2020-08-16 15:51:49 +00:00
|
|
|
error[E0716]: temporary value dropped while borrowed
|
2020-09-06 14:06:39 +00:00
|
|
|
--> $DIR/promote-not.rs:7:50
|
2020-08-16 15:51:49 +00:00
|
|
|
|
|
|
|
|
LL | static mut TEST1: Option<&mut [i32]> = Some(&mut [1, 2, 3]);
|
|
|
|
| ----------^^^^^^^^^-
|
|
|
|
| | | |
|
|
|
|
| | | temporary value is freed at the end of this statement
|
|
|
|
| | creates a temporary which is freed while still in use
|
|
|
|
| using this value as a static requires that borrow lasts for `'static`
|
|
|
|
|
|
|
|
error[E0716]: temporary value dropped while borrowed
|
2020-09-06 14:06:39 +00:00
|
|
|
--> $DIR/promote-not.rs:10:18
|
2020-08-16 15:51:49 +00:00
|
|
|
|
|
|
|
|
LL | let x = &mut [1,2,3];
|
|
|
|
| ^^^^^^^ creates a temporary which is freed while still in use
|
|
|
|
LL | x
|
|
|
|
| - using this value as a static requires that borrow lasts for `'static`
|
|
|
|
LL | };
|
|
|
|
| - temporary value is freed at the end of this statement
|
|
|
|
|
2020-09-06 14:06:39 +00:00
|
|
|
error[E0716]: temporary value dropped while borrowed
|
|
|
|
--> $DIR/promote-not.rs:19:32
|
|
|
|
|
|
|
|
|
LL | let _x: &'static () = &foo();
|
|
|
|
| ----------- ^^^^^ creates a temporary which is freed while still in use
|
|
|
|
| |
|
|
|
|
| type annotation requires that borrow lasts for `'static`
|
|
|
|
LL | }
|
|
|
|
| - temporary value is freed at the end of this statement
|
|
|
|
|
|
|
|
error[E0716]: temporary value dropped while borrowed
|
|
|
|
--> $DIR/promote-not.rs:27:29
|
|
|
|
|
|
|
|
|
LL | let _x: &'static i32 = &unsafe { U { x: 0 }.x };
|
|
|
|
| ------------ ^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
|
|
|
|
| |
|
|
|
|
| type annotation requires that borrow lasts for `'static`
|
|
|
|
LL | }
|
|
|
|
| - temporary value is freed at the end of this statement
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2020-08-16 15:51:49 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0716`.
|