]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-20801.stderr
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / issues / issue-20801.stderr
1 error[E0507]: cannot move out of a mutable reference
2   --> $DIR/issue-20801.rs:26:22
3    |
4 LL |     let a = unsafe { *mut_ref() };
5    |                      ^^^^^^^^^^
6    |                      |
7    |                      move occurs because value has type `T`, which does not implement the `Copy` trait
8    |                      help: consider removing the `*`: `mut_ref()`
9
10 error[E0507]: cannot move out of a shared reference
11   --> $DIR/issue-20801.rs:29:22
12    |
13 LL |     let b = unsafe { *imm_ref() };
14    |                      ^^^^^^^^^^
15    |                      |
16    |                      move occurs because value has type `T`, which does not implement the `Copy` trait
17    |                      help: consider removing the `*`: `imm_ref()`
18
19 error[E0507]: cannot move out of a raw pointer
20   --> $DIR/issue-20801.rs:32:22
21    |
22 LL |     let c = unsafe { *mut_ptr() };
23    |                      ^^^^^^^^^^
24    |                      |
25    |                      move occurs because value has type `T`, which does not implement the `Copy` trait
26    |                      help: consider removing the `*`: `mut_ptr()`
27
28 error[E0507]: cannot move out of a raw pointer
29   --> $DIR/issue-20801.rs:35:22
30    |
31 LL |     let d = unsafe { *const_ptr() };
32    |                      ^^^^^^^^^^^^
33    |                      |
34    |                      move occurs because value has type `T`, which does not implement the `Copy` trait
35    |                      help: consider removing the `*`: `const_ptr()`
36
37 error: aborting due to 4 previous errors
38
39 For more information about this error, try `rustc --explain E0507`.