2022-02-18 04:17:07 -06:00
error: casting between raw pointers to `[i32]` (element size 4) and `[u8]` (element size 1) does not adjust the count
2023-07-27 06:40:22 -05:00
--> $DIR/cast_slice_different_sizes.rs:10:13
2022-02-18 04:17:07 -06:00
|
LL | let b = a as *const [u8];
| ^^^^^^^^^^^^^^^^ help: replace with `ptr::slice_from_raw_parts`: `core::ptr::slice_from_raw_parts(a as *const u8, ..)`
|
= note: `#[deny(clippy::cast_slice_different_sizes)]` on by default
error: casting between raw pointers to `[u8]` (element size 1) and `[u32]` (element size 4) does not adjust the count
2023-07-27 06:40:22 -05:00
--> $DIR/cast_slice_different_sizes.rs:11:13
2022-02-18 04:17:07 -06:00
|
LL | let c = b as *const [u32];
| ^^^^^^^^^^^^^^^^^ help: replace with `ptr::slice_from_raw_parts`: `core::ptr::slice_from_raw_parts(b as *const u32, ..)`
error: casting between raw pointers to `[i32]` (element size 4) and `[u8]` (element size 1) does not adjust the count
2023-07-27 06:40:22 -05:00
--> $DIR/cast_slice_different_sizes.rs:14:16
2022-02-18 04:17:07 -06:00
|
LL | let loss = r_x as *const [i32] as *const [u8];
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with `ptr::slice_from_raw_parts`: `core::ptr::slice_from_raw_parts(r_x as *const [i32] as *const u8, ..)`
error: casting between raw pointers to `[i32]` (element size 4) and `[u8]` (element size 1) does not adjust the count
2023-07-27 06:40:22 -05:00
--> $DIR/cast_slice_different_sizes.rs:21:24
2022-02-18 04:17:07 -06:00
|
LL | let loss_block_1 = { r_x as *const [i32] } as *const [u8];
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with `ptr::slice_from_raw_parts`: `core::ptr::slice_from_raw_parts({ r_x as *const [i32] } as *const u8, ..)`
error: casting between raw pointers to `[i32]` (element size 4) and `[u8]` (element size 1) does not adjust the count
2023-07-27 06:40:22 -05:00
--> $DIR/cast_slice_different_sizes.rs:22:24
2022-02-18 04:17:07 -06:00
|
LL | let loss_block_2 = {
| ________________________^
LL | | let _ = ();
LL | | r_x as *const [i32]
LL | | } as *const [u8];
| |____________________^
|
help: replace with `ptr::slice_from_raw_parts`
|
LL ~ let loss_block_2 = core::ptr::slice_from_raw_parts({
LL + let _ = ();
LL + r_x as *const [i32]
LL ~ } as *const u8, ..);
|
error: casting between raw pointers to `[i32]` (element size 4) and `[u8]` (element size 1) does not adjust the count
2023-07-27 06:40:22 -05:00
--> $DIR/cast_slice_different_sizes.rs:39:27
2022-02-18 04:17:07 -06:00
|
LL | let long_chain_loss = r_x as *const [i32] as *const [u32] as *const [u16] as *const [i8] as *const [u8];
2022-04-23 11:49:40 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with `ptr::slice_from_raw_parts`: `core::ptr::slice_from_raw_parts(r_x as *const [i32] as *const u8, ..)`
2022-02-18 04:17:07 -06:00
2022-04-23 11:49:40 -05:00
error: casting between raw pointers to `[u16]` (element size 2) and `[u8]` (element size 1) does not adjust the count
2023-07-27 06:40:22 -05:00
--> $DIR/cast_slice_different_sizes.rs:54:36
2022-04-18 21:19:34 -05:00
|
LL | fn bar(x: *mut [u16]) -> *mut [u8] {
| ____________________________________^
LL | | x as *mut [u8]
LL | | }
2022-04-23 11:49:40 -05:00
| |_^ help: replace with `ptr::slice_from_raw_parts_mut`: `core::ptr::slice_from_raw_parts_mut(x as *mut u8, ..)`
2022-04-18 21:19:34 -05:00
2022-04-23 11:49:40 -05:00
error: casting between raw pointers to `[u16]` (element size 2) and `[u8]` (element size 1) does not adjust the count
2023-07-27 06:40:22 -05:00
--> $DIR/cast_slice_different_sizes.rs:58:36
2022-04-18 21:19:34 -05:00
|
LL | fn uwu(x: *mut [u16]) -> *mut [u8] {
| ____________________________________^
LL | | x as *mut _
LL | | }
2022-04-23 11:49:40 -05:00
| |_^ help: replace with `ptr::slice_from_raw_parts_mut`: `core::ptr::slice_from_raw_parts_mut(x as *mut u8, ..)`
2022-04-18 21:19:34 -05:00
2022-04-23 11:49:40 -05:00
error: casting between raw pointers to `[u16]` (element size 2) and `[u8]` (element size 1) does not adjust the count
2023-07-27 06:40:22 -05:00
--> $DIR/cast_slice_different_sizes.rs:62:37
2022-04-18 21:19:34 -05:00
|
LL | fn bar2(x: *mut [u16]) -> *mut [u8] {
| _____________________________________^
LL | | x as _
LL | | }
2022-04-23 11:49:40 -05:00
| |_^ help: replace with `ptr::slice_from_raw_parts_mut`: `core::ptr::slice_from_raw_parts_mut(x as *mut u8, ..)`
2022-04-18 21:19:34 -05:00
2022-04-23 11:49:40 -05:00
error: casting between raw pointers to `[u16]` (element size 2) and `[u8]` (element size 1) does not adjust the count
2023-07-27 06:40:22 -05:00
--> $DIR/cast_slice_different_sizes.rs:67:39
2022-04-18 21:19:34 -05:00
|
2022-04-23 11:49:40 -05:00
LL | fn bar3(x: *mut [u16]) -> *const [u8] {
| _______________________________________^
LL | | x as _
LL | | }
| |_^ help: replace with `ptr::slice_from_raw_parts`: `core::ptr::slice_from_raw_parts(x as *const u8, ..)`
error: casting between raw pointers to `[u16]` (element size 2) and `[u8]` (element size 1) does not adjust the count
2023-07-27 06:40:22 -05:00
--> $DIR/cast_slice_different_sizes.rs:72:39
2022-04-23 11:49:40 -05:00
|
LL | fn bar4(x: *const [u16]) -> *mut [u8] {
| _______________________________________^
LL | | x as _
LL | | }
| |_^ help: replace with `ptr::slice_from_raw_parts_mut`: `core::ptr::slice_from_raw_parts_mut(x as *mut u8, ..)`
error: casting between raw pointers to `[u16]` (element size 2) and `[u8]` (element size 1) does not adjust the count
2023-07-27 06:40:22 -05:00
--> $DIR/cast_slice_different_sizes.rs:77:39
2022-04-23 11:49:40 -05:00
|
2022-04-18 21:19:34 -05:00
LL | fn blocks(x: *mut [u16]) -> *mut [u8] {
| _______________________________________^
LL | | ({ x }) as _
LL | | }
2022-04-23 11:49:40 -05:00
| |_^ help: replace with `ptr::slice_from_raw_parts_mut`: `core::ptr::slice_from_raw_parts_mut(({ x }) as *mut u8, ..)`
2022-04-18 21:19:34 -05:00
2022-04-23 11:49:40 -05:00
error: casting between raw pointers to `[u16]` (element size 2) and `[u8]` (element size 1) does not adjust the count
2023-07-27 06:40:22 -05:00
--> $DIR/cast_slice_different_sizes.rs:81:44
2022-04-18 21:19:34 -05:00
|
LL | fn more_blocks(x: *mut [u16]) -> *mut [u8] {
| ____________________________________________^
LL | | { ({ x }) as _ }
LL | | }
2022-04-23 11:49:40 -05:00
| |_^ help: replace with `ptr::slice_from_raw_parts_mut`: `core::ptr::slice_from_raw_parts_mut(({ x }) as *mut u8, ..)`
2022-04-18 21:19:34 -05:00
2022-04-23 11:49:40 -05:00
error: casting between raw pointers to `[u16]` (element size 2) and `[u8]` (element size 1) does not adjust the count
2023-07-27 06:40:22 -05:00
--> $DIR/cast_slice_different_sizes.rs:82:5
2022-04-18 21:19:34 -05:00
|
LL | { ({ x }) as _ }
2022-04-23 11:49:40 -05:00
| ^^^^^^^^^^^^^^^^ help: replace with `ptr::slice_from_raw_parts_mut`: `core::ptr::slice_from_raw_parts_mut(({ x }) as *mut u8, ..)`
2022-04-18 21:19:34 -05:00
2022-04-23 11:49:40 -05:00
error: aborting due to 14 previous errors
2022-02-18 04:17:07 -06:00