c6bc682325
This is done by adding two new lints: cast_ptr_alignment and transmute_ptr_to_ptr. These will replace misaligned_transmute.
17 lines
514 B
Plaintext
17 lines
514 B
Plaintext
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
|
|
|