]> git.lizzy.rs Git - rust.git/blob - tests/ui/packed/packed-struct-borrow-element.stderr
Auto merge of #107574 - compiler-errors:back-to-old-mac-builders-pls, r=pietroalbini
[rust.git] / tests / ui / packed / packed-struct-borrow-element.stderr
1 error[E0793]: reference to packed field is unaligned
2   --> $DIR/packed-struct-borrow-element.rs:24:15
3    |
4 LL |     let brw = &foo.baz;
5    |               ^^^^^^^^
6    |
7    = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
8    = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
9
10 error[E0793]: reference to packed field is unaligned
11   --> $DIR/packed-struct-borrow-element.rs:28:15
12    |
13 LL |     let brw = &foo.baz;
14    |               ^^^^^^^^
15    |
16    = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
17    = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0793`.