summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/cast_raw_slice_pointer_cast.stderr
blob: f07801c197cccfe73f1dd4727b2bd15770b11f2c (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
error: casting the result of `from_raw_parts` to *const [u8]
  --> $DIR/cast_raw_slice_pointer_cast.rs:9:35
   |
LL |     let _: *const [u8] = unsafe { std::slice::from_raw_parts(ptr, 1) as *const [u8] };
   |                                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `core::ptr::slice_from_raw_parts(ptr, 1)`
   |
   = note: `-D clippy::cast-slice-from-raw-parts` implied by `-D warnings`

error: casting the result of `from_raw_parts_mut` to *mut [u8]
  --> $DIR/cast_raw_slice_pointer_cast.rs:10:35
   |
LL |     let _: *const [u8] = unsafe { std::slice::from_raw_parts_mut(mptr, 1) as *mut [u8] };
   |                                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `core::ptr::slice_from_raw_parts_mut(mptr, 1)`

error: casting the result of `from_raw_parts` to *const [u8]
  --> $DIR/cast_raw_slice_pointer_cast.rs:11:26
   |
LL |     let _: *const [u8] = unsafe { std::slice::from_raw_parts(ptr, 1) } as *const [u8];
   |                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `core::ptr::slice_from_raw_parts(ptr, 1)`

error: casting the result of `from_raw_parts` to *const [u8]
  --> $DIR/cast_raw_slice_pointer_cast.rs:14:30
   |
LL |         let _: *const [u8] = unsafe { slice::from_raw_parts(ptr, 1) } as *const [u8];
   |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `core::ptr::slice_from_raw_parts(ptr, 1)`

error: casting the result of `from_raw_parts` to *const [u8]
  --> $DIR/cast_raw_slice_pointer_cast.rs:16:30
   |
LL |         let _: *const [u8] = unsafe { one::from_raw_parts(ptr, 1) } as *const [u8];
   |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `core::ptr::slice_from_raw_parts(ptr, 1)`

error: casting the result of `from_raw_parts` to *const [u8]
  --> $DIR/cast_raw_slice_pointer_cast.rs:20:30
   |
LL |         let _: *const [u8] = unsafe { slice::from_raw_parts(ptr, 1) } as *const [u8];
   |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `core::ptr::slice_from_raw_parts(ptr, 1)`

error: casting the result of `from_raw_parts` to *const [u8]
  --> $DIR/cast_raw_slice_pointer_cast.rs:22:30
   |
LL |         let _: *const [u8] = unsafe { one::from_raw_parts(ptr, 1) } as *const [u8];
   |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `core::ptr::slice_from_raw_parts(ptr, 1)`

error: aborting due to 7 previous errors