mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
aa72cac87a
* print alignment in bytes in the lint message * ignore ZST left-hand types
16 lines
557 B
Text
16 lines
557 B
Text
error: casting from `*const u8` to a more-strictly-aligned pointer (`*const u16`) (1 < 2 bytes)
|
|
--> $DIR/cast_alignment.rs:12:5
|
|
|
|
|
LL | (&1u8 as *const u8) as *const u16;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::cast-ptr-alignment` implied by `-D warnings`
|
|
|
|
error: casting from `*mut u8` to a more-strictly-aligned pointer (`*mut u16`) (1 < 2 bytes)
|
|
--> $DIR/cast_alignment.rs:13:5
|
|
|
|
|
LL | (&mut 1u8 as *mut u8) as *mut u16;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|