]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-20801.nll.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-20801.nll.stderr
1 error[E0507]: cannot move out of borrowed content
2   --> $DIR/issue-20801.rs:36:22
3    |
4 LL |     let a = unsafe { *mut_ref() };
5    |                      ^^^^^^^^^^
6    |                      |
7    |                      cannot move out of borrowed content
8    |                      help: consider removing the `*`: `mut_ref()`
9
10 error[E0507]: cannot move out of borrowed content
11   --> $DIR/issue-20801.rs:39:22
12    |
13 LL |     let b = unsafe { *imm_ref() };
14    |                      ^^^^^^^^^^
15    |                      |
16    |                      cannot move out of borrowed content
17    |                      help: consider removing the `*`: `imm_ref()`
18
19 error[E0507]: cannot move out of borrowed content
20   --> $DIR/issue-20801.rs:42:22
21    |
22 LL |     let c = unsafe { *mut_ptr() };
23    |                      ^^^^^^^^^^
24    |                      |
25    |                      cannot move out of borrowed content
26    |                      help: consider removing the `*`: `mut_ptr()`
27
28 error[E0507]: cannot move out of borrowed content
29   --> $DIR/issue-20801.rs:45:22
30    |
31 LL |     let d = unsafe { *const_ptr() };
32    |                      ^^^^^^^^^^^^
33    |                      |
34    |                      cannot move out of borrowed content
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`.