2017-12-24 12:45:51 +00:00
|
|
|
error[E0506]: cannot assign to `*s` because it is borrowed
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/guarantor-issue-46974.rs:7:5
|
2017-12-24 12:45:51 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let t = &mut *s; // this borrow should last for the entire function
|
2023-01-15 03:06:44 +00:00
|
|
|
| ------- `*s` is borrowed here
|
2018-02-24 23:01:39 +00:00
|
|
|
LL | let x = &t.0;
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | *s = (2,);
|
2023-01-15 03:06:44 +00:00
|
|
|
| ^^^^^^^^^ `*s` is assigned to here but it was already borrowed
|
2018-03-05 22:29:05 +00:00
|
|
|
LL | *x
|
|
|
|
| -- borrow later used here
|
2017-12-24 12:45:51 +00:00
|
|
|
|
2021-11-13 05:43:43 +00:00
|
|
|
error: lifetime may not live long enough
|
2023-08-06 19:04:39 +00:00
|
|
|
--> $DIR/guarantor-issue-46974.rs:12:5
|
2017-12-24 12:45:51 +00:00
|
|
|
|
|
2021-11-13 05:43:43 +00:00
|
|
|
LL | fn bar(s: &Box<(i32,)>) -> &'static i32 {
|
|
|
|
| - let's call the lifetime of this reference `'1`
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | &s.0
|
2021-11-13 05:43:43 +00:00
|
|
|
| ^^^^ returning this value requires that `'1` must outlive `'static`
|
2017-12-24 12:45:51 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2021-11-13 05:43:43 +00:00
|
|
|
For more information about this error, try `rustc --explain E0506`.
|