2019-07-06 11:40:14 +02:00
|
|
|
error: casting from `*const u8` to a more-strictly-aligned pointer (`*const u16`) (1 < 2 bytes)
|
2022-04-04 13:54:52 -04:00
|
|
|
--> $DIR/cast_alignment.rs:19:5
|
2018-04-17 17:13:19 -07:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | (&1u8 as *const u8) as *const u16;
|
2018-04-17 17:13:19 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: `-D clippy::cast-ptr-alignment` implied by `-D warnings`
|
2018-04-11 02:17:59 -07:00
|
|
|
|
2019-07-06 11:40:14 +02:00
|
|
|
error: casting from `*mut u8` to a more-strictly-aligned pointer (`*mut u16`) (1 < 2 bytes)
|
2022-04-04 13:54:52 -04:00
|
|
|
--> $DIR/cast_alignment.rs:20:5
|
2018-04-11 02:17:59 -07:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | (&mut 1u8 as *mut u8) as *mut u16;
|
2018-04-11 02:17:59 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2021-01-07 16:41:15 +13:00
|
|
|
error: casting from `*const u8` to a more-strictly-aligned pointer (`*const u16`) (1 < 2 bytes)
|
2022-04-04 13:54:52 -04:00
|
|
|
--> $DIR/cast_alignment.rs:23:5
|
2021-01-07 16:41:15 +13:00
|
|
|
|
|
|
|
|
LL | (&1u8 as *const u8).cast::<u16>();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: casting from `*mut u8` to a more-strictly-aligned pointer (`*mut u16`) (1 < 2 bytes)
|
2022-04-04 13:54:52 -04:00
|
|
|
--> $DIR/cast_alignment.rs:24:5
|
2021-01-07 16:41:15 +13:00
|
|
|
|
|
|
|
|
LL | (&mut 1u8 as *mut u8).cast::<u16>();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2018-04-11 02:17:59 -07:00
|
|
|
|