mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
16 lines
529 B
Text
16 lines
529 B
Text
error: casting from `*const u8` to a more-strictly-aligned pointer (`*const u16`)
|
|
--> $DIR/cast_alignment.rs:25:5
|
|
|
|
|
25 | (&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`)
|
|
--> $DIR/cast_alignment.rs:26:5
|
|
|
|
|
26 | (&mut 1u8 as *mut u8) as *mut u16;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|