2020-11-25 14:15:55 -06:00
error[E0502]: cannot borrow `p` as immutable because it is also borrowed as mutable
2021-06-27 01:22:46 -05:00
--> $DIR/simple-struct-min-capture.rs:22:22
2020-11-25 14:15:55 -06:00
|
LL | let mut c = || {
| -- mutable borrow occurs here
LL | p.x += 10;
2021-03-17 01:51:27 -05:00
| --- capture is mutable because of use here
LL | println!("{:?}", p);
| - first borrow occurs due to use of `p` in closure
2020-11-25 14:15:55 -06:00
...
LL | println!("{:?}", p);
| ^ immutable borrow occurs here
LL |
LL | c();
| - mutable borrow later used here
2021-10-21 09:01:16 -05:00
|
2022-06-20 21:25:52 -05:00
= note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
2020-11-25 14:15:55 -06:00
2021-06-27 01:22:46 -05:00
error: aborting due to previous error
2020-11-25 14:15:55 -06:00
For more information about this error, try `rustc --explain E0502`.