]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-lend-flow.stderr
Auto merge of #107663 - matthiaskrgr:107423-point-at-EOF-code, r=compiler-errors
[rust.git] / tests / ui / borrowck / borrowck-lend-flow.stderr
1 error[E0502]: cannot borrow `*v` as mutable because it is also borrowed as immutable
2   --> $DIR/borrowck-lend-flow.rs:24:16
3    |
4 LL |     let _w = &v;
5    |              -- immutable borrow occurs here
6 LL |     borrow_mut(&mut *v);
7    |                ^^^^^^^ mutable borrow occurs here
8 LL |     _w.use_ref();
9    |     ------------ immutable borrow later used here
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0502`.