forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathborrowck-move-error-with-note.stderr
38 lines (34 loc) · 1.61 KB
/
borrowck-move-error-with-note.stderr
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
error[E0507]: cannot move out of borrowed content
--> $DIR/borrowck-move-error-with-note.rs:21:11
|
21 | match *f { //~ ERROR cannot move out of
| ^^ cannot move out of borrowed content
22 | //~| cannot move out
23 | Foo::Foo1(num1,
| ---- hint: to prevent move, use `ref num1` or `ref mut num1`
24 | num2) => (),
| ---- ...and here (use `ref num2` or `ref mut num2`)
25 | Foo::Foo2(num) => (),
| --- ...and here (use `ref num` or `ref mut num`)
error[E0509]: cannot move out of type `S`, which implements the `Drop` trait
--> $DIR/borrowck-move-error-with-note.rs:40:9
|
40 | / S { //~ ERROR cannot move out of type `S`, which implements the `Drop` trait
41 | | //~| cannot move out of here
42 | | f: _s,
| | -- hint: to prevent move, use `ref _s` or `ref mut _s`
43 | | g: _t
| | -- ...and here (use `ref _t` or `ref mut _t`)
44 | | } => {}
| |_________^ cannot move out of here
error[E0507]: cannot move out of borrowed content
--> $DIR/borrowck-move-error-with-note.rs:57:11
|
57 | match a.a { //~ ERROR cannot move out of
| ^ cannot move out of borrowed content
58 | //~| cannot move out
59 | n => {
| - hint: to prevent move, use `ref n` or `ref mut n`
error: aborting due to 3 previous errors
You've got a few errors: E0507, E0509
If you want more information on an error, try using "rustc --explain E0507"