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