13 lines
467 B
Plaintext
13 lines
467 B
Plaintext
|
error[E0507]: cannot move out of dereference of raw pointer
|
||
|
--> $DIR/borrowck-move-from-unsafe-ptr.rs:13:13
|
||
|
|
|
||
|
LL | let y = *x; //~ ERROR cannot move out of dereference of raw pointer
|
||
|
| ^^
|
||
|
| |
|
||
|
| cannot move out of dereference of raw pointer
|
||
|
| help: consider using a reference instead: `&*x`
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0507`.
|