mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
29 lines
1003 B
Plaintext
29 lines
1003 B
Plaintext
error: casting from `*const u8` to a more-strictly-aligned pointer (`*const u16`) (1 < 2 bytes)
|
|
--> $DIR/cast_alignment.rs:18: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:19:5
|
|
|
|
|
LL | (&mut 1u8 as *mut u8) as *mut u16;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: casting from `*const u8` to a more-strictly-aligned pointer (`*const u16`) (1 < 2 bytes)
|
|
--> $DIR/cast_alignment.rs:22:5
|
|
|
|
|
LL | (&1u8 as *const u8).cast::<u16>();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: casting from `*mut u8` to a more-strictly-aligned pointer (`*mut u16`) (1 < 2 bytes)
|
|
--> $DIR/cast_alignment.rs:23:5
|
|
|
|
|
LL | (&mut 1u8 as *mut u8).cast::<u16>();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|