]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-pattern-typing-issue-19997.ast.nll.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / regions / regions-pattern-typing-issue-19997.ast.nll.stderr
1 error[E0506]: cannot assign to `a1` because it is borrowed
2   --> $DIR/regions-pattern-typing-issue-19997.rs:10:13
3    |
4 LL |     match (&a1,) {
5    |            --- borrow of `a1` occurs here
6 LL |         (&ref b0,) => {
7 LL |             a1 = &f; //[ast]~ ERROR cannot assign
8    |             ^^^^^^^ assignment to borrowed `a1` occurs here
9 LL |             //[mir]~^ ERROR cannot assign to `a1` because it is borrowed
10 LL |             drop(b0);
11    |                  -- borrow later used here
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0506`.