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