summaryrefslogtreecommitdiffstats
path: root/tests/ui/pattern/bindings-after-at/default-binding-modes-both-sides-independent.stderr
blob: 73ebbf48118daebf4cdd798f82374b856a949f5a (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
error: cannot move out of value because it is borrowed
  --> $DIR/default-binding-modes-both-sides-independent.rs:26:9
   |
LL |     let ref a @ b = NotCopy;
   |         -----^^^-
   |         |       |
   |         |       value is moved into `b` here
   |         value is borrowed by `a` here

error: cannot move out of value because it is borrowed
  --> $DIR/default-binding-modes-both-sides-independent.rs:29:9
   |
LL |     let ref mut a @ b = NotCopy;
   |         ---------^^^-
   |         |           |
   |         |           value is moved into `b` here
   |         value is mutably borrowed by `a` here

error: cannot move out of value because it is borrowed
  --> $DIR/default-binding-modes-both-sides-independent.rs:34:12
   |
LL |         Ok(ref a @ b) | Err(b @ ref a) => {
   |            -----^^^-
   |            |       |
   |            |       value is moved into `b` here
   |            value is borrowed by `a` here

error: borrow of moved value
  --> $DIR/default-binding-modes-both-sides-independent.rs:34:29
   |
LL |         Ok(ref a @ b) | Err(b @ ref a) => {
   |                             -^^^-----
   |                             |   |
   |                             |   value borrowed here after move
   |                             value moved into `b` here
   |                             move occurs because `b` has type `NotCopy` which does not implement the `Copy` trait
   |
help: borrow this binding in the pattern to avoid moving the value
   |
LL |         Ok(ref a @ b) | Err(ref b @ ref a) => {
   |                             +++

error: cannot move out of value because it is borrowed
  --> $DIR/default-binding-modes-both-sides-independent.rs:42:9
   |
LL |         ref a @ b => {
   |         -----^^^-
   |         |       |
   |         |       value is moved into `b` here
   |         value is borrowed by `a` here

error[E0382]: borrow of moved value
  --> $DIR/default-binding-modes-both-sides-independent.rs:29:9
   |
LL |     let ref mut a @ b = NotCopy;
   |         ^^^^^^^^^   -   ------- move occurs because value has type `NotCopy`, which does not implement the `Copy` trait
   |         |           |
   |         |           value moved here
   |         value borrowed here after move
   |
help: borrow this binding in the pattern to avoid moving the value
   |
LL |     let ref mut a @ ref b = NotCopy;
   |                     +++

error: aborting due to 6 previous errors

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