rust/tests/ui/borrowck/borrowck-union-borrow-nested.stderr
Esteban Küber 656db98bd9 Tweak E0597
CC #99430
2023-01-15 19:46:20 +00:00

14 lines
492 B
Plaintext

error[E0503]: cannot use `u.c` because it was mutably borrowed
--> $DIR/borrowck-union-borrow-nested.rs:24:21
|
LL | let ra = &mut u.s.a;
| ---------- `u.s.a` is borrowed here
LL | let b = u.c;
| ^^^ use of borrowed `u.s.a`
LL | ra.use_mut();
| ------------ borrow later used here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0503`.