rust/tests/ui/borrowck/borrowck-match-already-borrowed.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0503]: cannot use `foo` because it was mutably borrowed
--> $DIR/borrowck-match-already-borrowed.rs:9:19
2018-08-08 12:28:26 +00:00
|
LL | let p = &mut foo;
2023-01-15 03:06:44 +00:00
| -------- `foo` is borrowed here
2018-09-13 21:04:09 +00:00
LL | let _ = match foo {
| ^^^ use of borrowed `foo`
2018-08-08 12:28:26 +00:00
...
LL | drop(p);
| - borrow later used here
error[E0503]: cannot use `foo.0` because it was mutably borrowed
--> $DIR/borrowck-match-already-borrowed.rs:12:16
2018-08-08 12:28:26 +00:00
|
LL | let p = &mut foo;
2023-01-15 03:06:44 +00:00
| -------- `foo` is borrowed here
2018-08-08 12:28:26 +00:00
...
LL | Foo::A(x) => x
2018-08-08 12:28:26 +00:00
| ^ use of borrowed `foo`
LL | };
2018-08-08 12:28:26 +00:00
LL | drop(p);
| - borrow later used here
error[E0503]: cannot use `x` because it was mutably borrowed
--> $DIR/borrowck-match-already-borrowed.rs:22:9
2018-08-08 12:28:26 +00:00
|
LL | let r = &mut x;
2023-01-15 03:06:44 +00:00
| ------ `x` is borrowed here
2018-09-13 21:04:09 +00:00
LL | let _ = match x {
LL | x => x + 1,
2018-08-08 12:28:26 +00:00
| ^ use of borrowed `x`
...
LL | drop(r);
| - borrow later used here
error[E0503]: cannot use `x` because it was mutably borrowed
--> $DIR/borrowck-match-already-borrowed.rs:23:9
2018-08-08 12:28:26 +00:00
|
LL | let r = &mut x;
2023-01-15 03:06:44 +00:00
| ------ `x` is borrowed here
2018-08-08 12:28:26 +00:00
...
LL | y => y + 2,
2018-08-08 12:28:26 +00:00
| ^ use of borrowed `x`
LL | };
2018-08-08 12:28:26 +00:00
LL | drop(r);
| - borrow later used here
2018-09-13 21:04:09 +00:00
error: aborting due to 4 previous errors
2018-08-08 12:28:26 +00:00
For more information about this error, try `rustc --explain E0503`.