2019-07-06 09:40:14 +00:00
|
|
|
error: casting from `*const u8` to a more-strictly-aligned pointer (`*const u16`) (1 < 2 bytes)
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/cast_alignment.rs:19:5
|
2018-04-18 00:13:19 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | (&1u8 as *const u8) as *const u16;
|
2018-04-18 00:13:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::cast-ptr-alignment` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::cast_ptr_alignment)]`
|
2018-04-11 09:17:59 +00:00
|
|
|
|
2019-07-06 09:40:14 +00:00
|
|
|
error: casting from `*mut u8` to a more-strictly-aligned pointer (`*mut u16`) (1 < 2 bytes)
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/cast_alignment.rs:22:5
|
2018-04-11 09:17:59 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | (&mut 1u8 as *mut u8) as *mut u16;
|
2018-04-11 09:17:59 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2021-01-15 09:56:44 +00:00
|
|
|
error: casting from `*const u8` to a more-strictly-aligned pointer (`*const u16`) (1 < 2 bytes)
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/cast_alignment.rs:26:5
|
2021-01-15 09:56:44 +00:00
|
|
|
|
|
|
|
|
LL | (&1u8 as *const u8).cast::<u16>();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: casting from `*mut u8` to a more-strictly-aligned pointer (`*mut u16`) (1 < 2 bytes)
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/cast_alignment.rs:28:5
|
2021-01-15 09:56:44 +00:00
|
|
|
|
|
|
|
|
LL | (&mut 1u8 as *mut u8).cast::<u16>();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2018-04-11 09:17:59 +00:00
|
|
|
|