summaryrefslogtreecommitdiffstats
path: root/tests/ui/closures/2229_closure_analysis/diagnostics/union.stderr
blob: 7c34e2336c867487444c10479c9d8b43e81cfad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0506]: cannot assign to `a.y` because it is borrowed
  --> $DIR/union.rs:20:5
   |
LL |     let mut c = || {
   |                 -- borrow of `a.y` occurs here
...
LL |         let _ = &mut a;
   |                      - borrow occurs due to use in closure
...
LL |     a.y = 1;
   |     ^^^^^^^ assignment to borrowed `a.y` occurs here
...
LL |     c();
   |     - borrow later used here

error: aborting due to previous error

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