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

23 lines
943 B
Plaintext
Raw Normal View History

error[E0506]: cannot assign to `*s` because it is borrowed
--> $DIR/guarantor-issue-46974.rs:19: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;
2018-02-22 18:42:32 -06:00
LL | *s = (2,); //~ ERROR cannot assign to `*s`
| ^^^^^^^^^ assignment to borrowed `*s` occurs here
error[E0621]: explicit lifetime required in the type of `s`
--> $DIR/guarantor-issue-46974.rs:25:5
|
2018-02-22 18:42:32 -06:00
LL | fn bar(s: &Box<(i32,)>) -> &'static i32 {
| - consider changing the type of `s` to `&'static std::boxed::Box<(i32,)>`
2018-02-24 17:01:39 -06:00
LL | // FIXME(#46983): error message should be better
2018-02-22 18:42:32 -06:00
LL | &s.0 //~ ERROR explicit lifetime required in the type of `s` [E0621]
| ^^^^ lifetime `'static` required
error: aborting due to 2 previous errors
2018-02-19 14:40:25 -06:00
You've got a few errors: E0506, E0621
If you want more information on an error, try using "rustc --explain E0506"