summary refs log tree commit diff
path: root/src/test/ui/issue-20801.stderr
blob: 3989957b7b45ae5c471db0032de805cbe9228e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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

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

error[E0507]: cannot move out of dereference of raw pointer
  --> $DIR/issue-20801.rs:42:22
   |
LL |     let c = unsafe { *mut_ptr() };
   |                      ^^^^^^^^^^ cannot move out of dereference of raw pointer

error[E0507]: cannot move out of dereference of raw pointer
  --> $DIR/issue-20801.rs:45:22
   |
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`.