]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/borrowck/borrowck-migrate-to-nll.edition.stderr
Auto merge of #63233 - RalfJung:get_unchecked, r=Centril
[rust.git] / src / test / ui / borrowck / borrowck-migrate-to-nll.edition.stderr
index 461fb7d11a58aa4f4f986b11607ec1c659190331..a33a1d00a57869bcb33fe0b15757001925adacd3 100644 (file)
@@ -1,8 +1,13 @@
-warning[E0507]: cannot move out of borrowed content
-  --> $DIR/borrowck-migrate-to-nll.rs:25:17
+warning[E0502]: cannot borrow `*block.current` as immutable because it is also borrowed as mutable
+  --> $DIR/borrowck-migrate-to-nll.rs:28:21
    |
-LL |                 (|| { let bar = foo; bar.take() })();
-   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot move out of borrowed content
+LL |     let x = &mut block;
+   |             ---------- mutable borrow occurs here
+LL |     let p: &'a u8 = &*block.current;
+   |                     ^^^^^^^^^^^^^^^ immutable borrow occurs here
+LL |     // (use `x` and `p` so enabling NLL doesn't assign overly short lifetimes)
+LL |     drop(x);
+   |          - mutable borrow later used here
    |
    = warning: this error has been downgraded to a warning for backwards compatibility with previous releases
    = warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future