]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/dont-print-desugared.stderr
Update const_forget.rs
[rust.git] / src / test / ui / nll / dont-print-desugared.stderr
1 error[E0596]: cannot borrow data in a `&` reference as mutable
2   --> $DIR/dont-print-desugared.rs:4:10
3    |
4 LL |     for &ref mut x in s {}
5    |         -^^^^^^^^^
6    |         ||
7    |         |cannot borrow as mutable through `&` reference
8    |         help: consider changing this to be a mutable reference: `&mut ref mut x`
9
10 error[E0597]: `y` does not live long enough
11   --> $DIR/dont-print-desugared.rs:17:16
12    |
13 LL |     for ref mut d in v {
14    |                      - a temporary with access to the borrow is created here ...
15 LL |         let y = ();
16 LL |         *d = D(&y);
17    |                ^^ borrowed value does not live long enough
18 LL |     }
19    |     -
20    |     |
21    |     `y` dropped here while still borrowed
22    |     ... and the borrow might be used here, when that temporary is dropped and runs the `Drop` code for type `D`
23
24 error: aborting due to 2 previous errors
25
26 Some errors have detailed explanations: E0596, E0597.
27 For more information about an error, try `rustc --explain E0596`.