2018-10-03 10:47:23 -05:00
error[E0597]: `_t1` does not live long enough
2019-04-22 02:40:08 -05:00
--> $DIR/issue-54556-used-vs-unused-tails.rs:10:55
2018-10-03 10:47:23 -05:00
|
LL | { let mut _t1 = D(Box::new("t1")); D(&_t1).end() } ; // suggest `;`
2023-01-14 21:06:44 -06:00
| ------- --^^^^- - - ... and the borrow might be used here, when that temporary is dropped and runs the `Drop` code for type `D`
| | | | |
| | | | `_t1` dropped here while still borrowed
| | | borrowed value does not live long enough
| | a temporary with access to the borrow is created here ...
| binding `_t1` declared here
2019-04-22 02:40:08 -05:00
|
2020-04-16 14:43:40 -05:00
help: consider adding semicolon after the expression so its temporaries are dropped sooner, before the local variables declared by the block are dropped
|
LL | { let mut _t1 = D(Box::new("t1")); D(&_t1).end(); } ; // suggest `;`
2021-06-21 21:07:19 -05:00
| +
2018-10-03 10:47:23 -05:00
error[E0597]: `_t1` does not live long enough
2019-04-22 02:40:08 -05:00
--> $DIR/issue-54556-used-vs-unused-tails.rs:13:55
2018-10-03 10:47:23 -05:00
|
LL | { { let mut _t1 = D(Box::new("t1")); D(&_t1).end() } } ; // suggest `;`
2023-01-14 21:06:44 -06:00
| ------- --^^^^- - - ... and the borrow might be used here, when that temporary is dropped and runs the `Drop` code for type `D`
| | | | |
| | | | `_t1` dropped here while still borrowed
| | | borrowed value does not live long enough
| | a temporary with access to the borrow is created here ...
| binding `_t1` declared here
2019-04-22 02:40:08 -05:00
|
2020-04-16 14:43:40 -05:00
help: consider adding semicolon after the expression so its temporaries are dropped sooner, before the local variables declared by the block are dropped
|
LL | { { let mut _t1 = D(Box::new("t1")); D(&_t1).end(); } } ; // suggest `;`
2021-06-21 21:07:19 -05:00
| +
2018-10-03 10:47:23 -05:00
error[E0597]: `_t1` does not live long enough
2019-04-22 02:40:08 -05:00
--> $DIR/issue-54556-used-vs-unused-tails.rs:16:55
2018-10-03 10:47:23 -05:00
|
LL | { { let mut _t1 = D(Box::new("t1")); D(&_t1).end() }; } // suggest `;`
2023-01-14 21:06:44 -06:00
| ------- --^^^^- -- ... and the borrow might be used here, when that temporary is dropped and runs the `Drop` code for type `D`
| | | | |
| | | | `_t1` dropped here while still borrowed
| | | borrowed value does not live long enough
| | a temporary with access to the borrow is created here ...
| binding `_t1` declared here
2019-04-22 02:40:08 -05:00
|
2020-04-16 14:43:40 -05:00
help: consider adding semicolon after the expression so its temporaries are dropped sooner, before the local variables declared by the block are dropped
|
LL | { { let mut _t1 = D(Box::new("t1")); D(&_t1).end(); }; } // suggest `;`
2021-06-21 21:07:19 -05:00
| +
2018-10-03 10:47:23 -05:00
error[E0597]: `_t1` does not live long enough
2019-04-22 02:40:08 -05:00
--> $DIR/issue-54556-used-vs-unused-tails.rs:19:55
2018-10-03 10:47:23 -05:00
|
LL | let _ = { let mut _t1 = D(Box::new("t1")); D(&_t1).end() } ; // suggest `;`
2023-01-14 21:06:44 -06:00
| ------- --^^^^- - - ... and the borrow might be used here, when that temporary is dropped and runs the `Drop` code for type `D`
| | | | |
| | | | `_t1` dropped here while still borrowed
| | | borrowed value does not live long enough
| | a temporary with access to the borrow is created here ...
| binding `_t1` declared here
2019-04-22 02:40:08 -05:00
|
2020-04-16 14:43:40 -05:00
help: consider adding semicolon after the expression so its temporaries are dropped sooner, before the local variables declared by the block are dropped
|
LL | let _ = { let mut _t1 = D(Box::new("t1")); D(&_t1).end(); } ; // suggest `;`
2021-06-21 21:07:19 -05:00
| +
2018-10-03 10:47:23 -05:00
error[E0597]: `_t1` does not live long enough
2019-04-22 02:40:08 -05:00
--> $DIR/issue-54556-used-vs-unused-tails.rs:22:55
2018-10-03 10:47:23 -05:00
|
LL | let _u = { let mut _t1 = D(Box::new("t1")); D(&_t1).unit() } ; // suggest `;`
2023-01-14 21:06:44 -06:00
| ------- --^^^^- - - ... and the borrow might be used here, when that temporary is dropped and runs the `Drop` code for type `D`
| | | | |
| | | | `_t1` dropped here while still borrowed
| | | borrowed value does not live long enough
| | a temporary with access to the borrow is created here ...
| binding `_t1` declared here
2019-04-22 02:40:08 -05:00
|
2020-04-16 14:43:40 -05:00
help: consider adding semicolon after the expression so its temporaries are dropped sooner, before the local variables declared by the block are dropped
|
LL | let _u = { let mut _t1 = D(Box::new("t1")); D(&_t1).unit(); } ; // suggest `;`
2021-06-21 21:07:19 -05:00
| +
2018-10-03 10:47:23 -05:00
error[E0597]: `_t1` does not live long enough
2019-04-22 02:40:08 -05:00
--> $DIR/issue-54556-used-vs-unused-tails.rs:25:55
2018-10-03 10:47:23 -05:00
|
LL | let _x = { let mut _t1 = D(Box::new("t1")); D(&_t1).end() } ; // `let x = ...; x`
2023-01-14 21:06:44 -06:00
| ------- --^^^^- - - ... and the borrow might be used here, when that temporary is dropped and runs the `Drop` code for type `D`
| | | | |
| | | | `_t1` dropped here while still borrowed
| | | borrowed value does not live long enough
| | a temporary with access to the borrow is created here ...
| binding `_t1` declared here
2019-04-22 02:40:08 -05:00
|
2020-04-16 14:43:40 -05:00
= note: the temporary is part of an expression at the end of a block;
consider forcing this temporary to be dropped sooner, before the block's local variables are dropped
help: for example, you could save the expression's value in a new local variable `x` and then make `x` be the expression at the end of the block
|
LL | let _x = { let mut _t1 = D(Box::new("t1")); let x = D(&_t1).end(); x } ; // `let x = ...; x`
2021-06-21 21:07:19 -05:00
| +++++++ +++
2018-10-03 10:47:23 -05:00
error[E0597]: `_t1` does not live long enough
2019-04-22 02:40:08 -05:00
--> $DIR/issue-54556-used-vs-unused-tails.rs:30:55
2018-10-03 10:47:23 -05:00
|
LL | _y = { let mut _t1 = D(Box::new("t1")); D(&_t1).end() } ; // `let x = ...; x`
2023-01-14 21:06:44 -06:00
| ------- --^^^^- - - ... and the borrow might be used here, when that temporary is dropped and runs the `Drop` code for type `D`
| | | | |
| | | | `_t1` dropped here while still borrowed
| | | borrowed value does not live long enough
| | a temporary with access to the borrow is created here ...
| binding `_t1` declared here
2019-04-22 02:40:08 -05:00
|
2020-04-16 14:43:40 -05:00
= note: the temporary is part of an expression at the end of a block;
consider forcing this temporary to be dropped sooner, before the block's local variables are dropped
help: for example, you could save the expression's value in a new local variable `x` and then make `x` be the expression at the end of the block
|
LL | _y = { let mut _t1 = D(Box::new("t1")); let x = D(&_t1).end(); x } ; // `let x = ...; x`
2021-06-21 21:07:19 -05:00
| +++++++ +++
2018-10-03 10:47:23 -05:00
error[E0597]: `_t1` does not live long enough
2019-04-22 02:40:08 -05:00
--> $DIR/issue-54556-used-vs-unused-tails.rs:37:55
2018-10-03 10:47:23 -05:00
|
LL | fn f_local_ref() { let mut _t1 = D(Box::new("t1")); D(&_t1).unit() } // suggest `;`
2023-01-14 21:06:44 -06:00
| ------- --^^^^- -
| | | | |
| | | | `_t1` dropped here while still borrowed
| | | | ... and the borrow might be used here, when that temporary is dropped and runs the `Drop` code for type `D`
| | | borrowed value does not live long enough
| | a temporary with access to the borrow is created here ...
| binding `_t1` declared here
2018-10-03 10:47:23 -05:00
|
2020-04-16 14:43:40 -05:00
help: consider adding semicolon after the expression so its temporaries are dropped sooner, before the local variables declared by the block are dropped
|
LL | fn f_local_ref() { let mut _t1 = D(Box::new("t1")); D(&_t1).unit(); } // suggest `;`
2021-06-21 21:07:19 -05:00
| +
2018-10-03 10:47:23 -05:00
error[E0597]: `_t1` does not live long enough
2019-04-22 02:40:08 -05:00
--> $DIR/issue-54556-used-vs-unused-tails.rs:40:55
2018-10-03 10:47:23 -05:00
|
LL | fn f() -> String { let mut _t1 = D(Box::new("t1")); D(&_t1).end() } // `let x = ...; x`
2023-01-14 21:06:44 -06:00
| ------- --^^^^- -
| | | | |
| | | | `_t1` dropped here while still borrowed
| | | | ... and the borrow might be used here, when that temporary is dropped and runs the `Drop` code for type `D`
| | | borrowed value does not live long enough
| | a temporary with access to the borrow is created here ...
| binding `_t1` declared here
2018-10-03 10:47:23 -05:00
|
2020-04-16 14:43:40 -05:00
= note: the temporary is part of an expression at the end of a block;
consider forcing this temporary to be dropped sooner, before the block's local variables are dropped
help: for example, you could save the expression's value in a new local variable `x` and then make `x` be the expression at the end of the block
|
LL | fn f() -> String { let mut _t1 = D(Box::new("t1")); let x = D(&_t1).end(); x } // `let x = ...; x`
2021-06-21 21:07:19 -05:00
| +++++++ +++
2018-10-03 10:47:23 -05:00
error: aborting due to 9 previous errors
For more information about this error, try `rustc --explain E0597`.