2018-08-08 07:28:26 -05:00
|
|
|
error[E0506]: cannot assign to `a1` because it is borrowed
|
2019-04-22 02:40:08 -05:00
|
|
|
--> $DIR/regions-pattern-typing-issue-19997.rs:7:13
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | match (&a1,) {
|
2023-01-14 21:06:44 -06:00
|
|
|
| --- `a1` is borrowed here
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | (&ref b0,) => {
|
2019-03-17 04:52:07 -05:00
|
|
|
LL | a1 = &f;
|
2023-01-14 21:06:44 -06:00
|
|
|
| ^^^^^^^ `a1` is assigned to here but it was already borrowed
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | drop(b0);
|
|
|
|
| -- borrow later used here
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0506`.
|