summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/borrowck-match-already-borrowed.stderr
blob: 39047be9de670e667bcd9517168ee5ad6140d64e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
error[E0503]: cannot use `foo` because it was mutably borrowed
  --> $DIR/borrowck-match-already-borrowed.rs:9:19
   |
LL |     let p = &mut foo;
   |             -------- borrow of `foo` occurs here
LL |     let _ = match foo {
   |                   ^^^ use of borrowed `foo`
...
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
   |
LL |     let p = &mut foo;
   |             -------- borrow of `foo` occurs here
...
LL |         Foo::A(x) => x
   |                ^ use of borrowed `foo`
LL |     };
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
   |
LL |     let r = &mut x;
   |             ------ borrow of `x` occurs here
LL |     let _ = match x {
LL |         x => x + 1,
   |         ^ 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
   |
LL |     let r = &mut x;
   |             ------ borrow of `x` occurs here
...
LL |         y => y + 2,
   |         ^ use of borrowed `x`
LL |     };
LL |     drop(r);
   |          - borrow later used here

error: aborting due to 4 previous errors

For more information about this error, try `rustc --explain E0503`.