mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-03-07 00:37:25 +00:00
17 lines
514 B
Text
17 lines
514 B
Text
|
error: casting from `*const u8` to a less-strictly-aligned pointer (`*const u16`)
|
||
|
--> $DIR/cast_alignment.rs:9:5
|
||
|
|
|
||
|
9 | (&1u8 as *const u8) as *const u16;
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D cast-ptr-alignment` implied by `-D warnings`
|
||
|
|
||
|
error: casting from `*mut u8` to a less-strictly-aligned pointer (`*mut u16`)
|
||
|
--> $DIR/cast_alignment.rs:10:5
|
||
|
|
|
||
|
10 | (&mut 1u8 as *mut u8) as *mut u16;
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
|
|
||
|
error: aborting due to 2 previous errors
|
||
|
|