]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/borrowck/borrowck-swap-mut-base-ptr.stderr
Unit test from #57866.
[rust.git] / src / test / ui / borrowck / borrowck-swap-mut-base-ptr.stderr
index f9e4a580ccc6c094f4f2794183fb99184e07129c..35007216dace1e80fe2b81bac57397dc2633fdba 100644 (file)
@@ -1,11 +1,11 @@
 error[E0502]: cannot borrow `t0` as mutable because `*t0` is also borrowed as immutable
-  --> $DIR/borrowck-swap-mut-base-ptr.rs:23:15
+  --> $DIR/borrowck-swap-mut-base-ptr.rs:13:15
    |
 LL |     let p: &isize = &*t0;     // Freezes `*t0`
    |                      --- immutable borrow occurs here
 LL |     swap(&mut t0, &mut t1); //~ ERROR cannot borrow `t0`
    |               ^^ mutable borrow occurs here
-LL |     *t1 = 22;
+...
 LL | }
    | - immutable borrow ends here