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

40 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-07-19 15:15:10 -05:00
error[E0507]: cannot move out of borrowed content
--> $DIR/issue-20801.rs:36:22
|
LL | let a = unsafe { *mut_ref() };
| ^^^^^^^^^^
| |
| cannot move out of borrowed content
| help: consider using a reference instead: `&*mut_ref()`
2018-07-19 15:15:10 -05:00
error[E0507]: cannot move out of borrowed content
--> $DIR/issue-20801.rs:39:22
|
LL | let b = unsafe { *imm_ref() };
| ^^^^^^^^^^
| |
| cannot move out of borrowed content
| help: consider using a reference instead: `&*imm_ref()`
2018-07-19 15:15:10 -05:00
error[E0507]: cannot move out of borrowed content
--> $DIR/issue-20801.rs:42:22
|
LL | let c = unsafe { *mut_ptr() };
| ^^^^^^^^^^
| |
| cannot move out of borrowed content
| help: consider using a reference instead: `&*mut_ptr()`
2018-07-19 15:15:10 -05:00
error[E0507]: cannot move out of borrowed content
2018-07-15 16:11:54 -05:00
--> $DIR/issue-20801.rs:45:22
|
LL | let d = unsafe { *const_ptr() };
| ^^^^^^^^^^^^
| |
| cannot move out of borrowed content
| help: consider using a reference instead: `&*const_ptr()`
2018-07-15 16:11:54 -05:00
2018-07-19 15:15:10 -05:00
error: aborting due to 4 previous errors
2018-07-15 16:11:54 -05:00
2018-07-19 15:15:10 -05:00
For more information about this error, try `rustc --explain E0507`.