]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/cast_alignment.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / cast_alignment.stderr
index d4fdb5becf9e0178cd807e4449d8e22888764278..79219f86155a4458fe95c46dbc9b699b0738bca1 100644 (file)
@@ -1,15 +1,15 @@
-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 `*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 less-strictly-aligned pointer (`*mut u16`)
-  --> $DIR/cast_alignment.rs:10:5
+error: casting from `*mut u8` to a more-strictly-aligned pointer (`*mut u16`) (1 < 2 bytes)
+  --> $DIR/cast_alignment.rs:13:5
    |
-10 |     (&mut 1u8 as *mut u8) as *mut u16;
+LL |     (&mut 1u8 as *mut u8) as *mut u16;
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: aborting due to 2 previous errors