rust/src/test/ui/borrowck/issue-54597-reject-move-out-of-borrow-via-pat.stderr

13 lines
453 B
Plaintext
Raw Normal View History

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
|
2018-11-27 03:56:36 -06:00
LL | *array //~ ERROR cannot move out of borrowed content
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`.