rust/src/test/ui/nll/guarantor-issue-46974.stderr

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

24 lines
841 B
Plaintext
Raw Normal View History

error[E0506]: cannot assign to `*s` because it is borrowed
2018-12-25 09:56:47 -06:00
--> $DIR/guarantor-issue-46974.rs:9:5
|
2018-02-22 18:42:32 -06:00
LL | let t = &mut *s; // this borrow should last for the entire function
| ------- borrow of `*s` occurs here
2018-02-24 17:01:39 -06:00
LL | let x = &t.0;
2019-03-09 06:03:44 -06:00
LL | *s = (2,);
| ^^^^^^^^^ assignment to borrowed `*s` occurs here
LL | *x
| -- borrow later used here
error: lifetime may not live long enough
2018-12-25 09:56:47 -06:00
--> $DIR/guarantor-issue-46974.rs:15:5
|
LL | fn bar(s: &Box<(i32,)>) -> &'static i32 {
| - let's call the lifetime of this reference `'1`
LL | // FIXME(#46983): error message should be better
2019-03-09 06:03:44 -06: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`.