]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/issue-54556-wrap-it-up.stderr
core: Support variety of atomic widths in width-agnostic functions
[rust.git] / tests / ui / nll / issue-54556-wrap-it-up.stderr
1 error[E0506]: cannot assign to `x` because it is borrowed
2   --> $DIR/issue-54556-wrap-it-up.rs:27:5
3    |
4 LL |     let wrap = Wrap { p: &mut x };
5    |                          ------ borrow of `x` occurs here
6 ...
7 LL |     x = 1;
8    |     ^^^^^ assignment to borrowed `x` occurs here
9 LL | }
10    | - borrow might be used here, when `foo` is dropped and runs the destructor for type `Foo<'_>`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0506`.