]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/guarantor-issue-46974.stderr
Rollup merge of #103146 - joboet:cleanup_pthread_condvar, r=Mark-Simulacrum
[rust.git] / src / test / ui / nll / guarantor-issue-46974.stderr
1 error[E0506]: cannot assign to `*s` because it is borrowed
2   --> $DIR/guarantor-issue-46974.rs:7:5
3    |
4 LL |     let t = &mut *s; // this borrow should last for the entire function
5    |             ------- borrow of `*s` occurs here
6 LL |     let x = &t.0;
7 LL |     *s = (2,);
8    |     ^^^^^^^^^ assignment to borrowed `*s` occurs here
9 LL |     *x
10    |     -- borrow later used here
11
12 error: lifetime may not live long enough
13   --> $DIR/guarantor-issue-46974.rs:13:5
14    |
15 LL | fn bar(s: &Box<(i32,)>) -> &'static i32 {
16    |           - let's call the lifetime of this reference `'1`
17 LL |     // FIXME(#46983): error message should be better
18 LL |     &s.0
19    |     ^^^^ returning this value requires that `'1` must outlive `'static`
20
21 error: aborting due to 2 previous errors
22
23 For more information about this error, try `rustc --explain E0506`.