2018-10-15 07:07:19 -05:00
|
|
|
error[E0507]: cannot move out of borrowed content
|
|
|
|
--> $DIR/issue-54597-reject-move-out-of-borrow-via-pat.rs:16:13
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | *array
|
2018-10-15 07:07:19 -05:00
|
|
|
| ^^^^^^
|
|
|
|
| |
|
|
|
|
| cannot move out of borrowed content
|
|
|
|
| help: consider removing the `*`: `array`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0507`.
|