rust/src/test/ui/issues/issue-20801.stderr

28 lines
958 B
Plaintext
Raw Normal View History

2018-07-15 14:11:54 -07:00
error[E0507]: cannot move out of borrowed content
2018-12-25 08:56:47 -07:00
--> $DIR/issue-20801.rs:26:22
2018-07-15 14:11:54 -07:00
|
LL | let a = unsafe { *mut_ref() };
| ^^^^^^^^^^ cannot move out of borrowed content
error[E0507]: cannot move out of borrowed content
2018-12-25 08:56:47 -07:00
--> $DIR/issue-20801.rs:29:22
2018-07-15 14:11:54 -07:00
|
LL | let b = unsafe { *imm_ref() };
| ^^^^^^^^^^ cannot move out of borrowed content
error[E0507]: cannot move out of dereference of raw pointer
2018-12-25 08:56:47 -07:00
--> $DIR/issue-20801.rs:32:22
2018-07-15 14:11:54 -07:00
|
LL | let c = unsafe { *mut_ptr() };
| ^^^^^^^^^^ cannot move out of dereference of raw pointer
error[E0507]: cannot move out of dereference of raw pointer
2018-12-25 08:56:47 -07:00
--> $DIR/issue-20801.rs:35:22
2018-07-15 14:11:54 -07:00
|
LL | let d = unsafe { *const_ptr() };
| ^^^^^^^^^^^^ cannot move out of dereference of raw pointer
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0507`.