]> git.lizzy.rs Git - rust.git/blob - tests/ui/packed/packed-struct-borrow-element-64bit.stderr
make unaligned_reference a hard error
[rust.git] / tests / ui / packed / packed-struct-borrow-element-64bit.stderr
1 error[E0793]: reference to packed field is unaligned
2   --> $DIR/packed-struct-borrow-element-64bit.rs:13: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: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0793`.