rust/tests/ui/nll/guarantor-issue-46974.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
791 B
Plaintext
Raw Normal View History

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
|
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
LL | *x
| -- borrow later used here
error: lifetime may not live long enough
--> $DIR/guarantor-issue-46974.rs:12:5
|
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
| ^^^^ returning this value requires that `'1` must outlive `'static`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0506`.