summaryrefslogtreecommitdiffstats
path: root/tests/ui/closures/2229_closure_analysis/diagnostics/borrowck/borrowck-1.stderr
blob: 341d2bc65634b505db9faa9894608c52851bc65a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0499]: cannot borrow `p` as mutable more than once at a time
  --> $DIR/borrowck-1.rs:12:17
   |
LL |     let y = &mut p.y;
   |             -------- first mutable borrow occurs here
LL |     let mut c = || {
   |                 ^^ second mutable borrow occurs here
LL |
LL |        let x = &mut p.x;
   |                     --- capture is mutable because of use here
LL |        println!("{:?}", p);
   |                         - second borrow occurs due to use of `p` in closure
...
LL |     *y+=1;
   |     ----- first borrow later used here

error: aborting due to previous error

For more information about this error, try `rustc --explain E0499`.