2020-08-16 17:51:49 +02:00
|
|
|
error[E0716]: temporary value dropped while borrowed
|
2020-10-25 17:46:01 +01:00
|
|
|
--> $DIR/promote-not.rs:9:50
|
2020-08-16 17:51:49 +02: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-10-25 17:46:01 +01:00
|
|
|
--> $DIR/promote-not.rs:12:18
|
2020-08-16 17:51:49 +02: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 16:06:39 +02:00
|
|
|
error[E0716]: temporary value dropped while borrowed
|
2020-10-25 17:46:01 +01:00
|
|
|
--> $DIR/promote-not.rs:21:32
|
2020-09-06 16:06:39 +02:00
|
|
|
|
|
|
|
|
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
|
2020-10-25 17:46:01 +01:00
|
|
|
--> $DIR/promote-not.rs:29:29
|
2020-09-06 16:06:39 +02:00
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2020-10-04 15:25:26 +02:00
|
|
|
error[E0716]: temporary value dropped while borrowed
|
2020-10-25 17:46:01 +01:00
|
|
|
--> $DIR/promote-not.rs:34:29
|
2020-10-04 15:25:26 +02:00
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2020-10-25 17:46:01 +01:00
|
|
|
error[E0716]: temporary value dropped while borrowed
|
2020-10-25 18:06:41 +01:00
|
|
|
--> $DIR/promote-not.rs:40:29
|
|
|
|
|
|
|
|
|
LL | let _val: &'static _ = &(Cell::new(1), 2).1;
|
|
|
|
| ---------- ^^^^^^^^^^^^^^^^^ 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:45:29
|
2020-10-25 17:46:01 +01:00
|
|
|
|
|
|
|
|
LL | let _val: &'static _ = &(Cell::new(1), 2).0;
|
|
|
|
| ---------- ^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
|
|
|
|
| |
|
|
|
|
| type annotation requires that borrow lasts for `'static`
|
2020-10-25 18:06:41 +01:00
|
|
|
LL | let _val: &'static _ = &(Cell::new(1), 2).1;
|
|
|
|
LL | }
|
|
|
|
| - temporary value is freed at the end of this statement
|
|
|
|
|
|
|
|
error[E0716]: temporary value dropped while borrowed
|
|
|
|
--> $DIR/promote-not.rs:46:29
|
|
|
|
|
|
|
|
|
LL | let _val: &'static _ = &(Cell::new(1), 2).1;
|
|
|
|
| ---------- ^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
|
|
|
|
| |
|
|
|
|
| type annotation requires that borrow lasts for `'static`
|
2020-10-25 17:46:01 +01:00
|
|
|
LL | }
|
|
|
|
| - temporary value is freed at the end of this statement
|
|
|
|
|
2020-10-25 18:06:41 +01:00
|
|
|
error: aborting due to 8 previous errors
|
2020-08-16 17:51:49 +02:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0716`.
|