rust/tests/ui/closures/2229_closure_analysis/diagnostics/simple-struct-min-capture.stderr

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

22 lines
860 B
Plaintext
Raw Normal View History

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;
| --- 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
|
= 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`.