]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-swap-mut-base-ptr.stderr
Rollup merge of #57229 - mikeyhew:fix-56806, r=varkor
[rust.git] / src / test / ui / borrowck / borrowck-swap-mut-base-ptr.stderr
1 error[E0502]: cannot borrow `t0` as mutable because `*t0` is also borrowed as immutable
2   --> $DIR/borrowck-swap-mut-base-ptr.rs:13:15
3    |
4 LL |     let p: &isize = &*t0;     // Freezes `*t0`
5    |                      --- immutable borrow occurs here
6 LL |     swap(&mut t0, &mut t1); //~ ERROR cannot borrow `t0`
7    |               ^^ mutable borrow occurs here
8 ...
9 LL | }
10    | - immutable borrow ends here
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0502`.