mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 03:38:29 +00:00
37 lines
1.4 KiB
Plaintext
37 lines
1.4 KiB
Plaintext
error[E0080]: accessing memory based on pointer with alignment 1, but alignment 4 is required
|
|
--> $DIR/raw-pointer-ub.rs:4:16
|
|
|
|
|
LL | let _val = *ptr;
|
|
| ^^^^ evaluation of constant value failed here
|
|
|
|
error[E0080]: accessing memory based on pointer with alignment 1, but alignment 4 is required
|
|
--> $DIR/raw-pointer-ub.rs:11:5
|
|
|
|
|
LL | *ptr = 0;
|
|
| ^^^^^^^^ evaluation of constant value failed here
|
|
|
|
error[E0080]: accessing memory with alignment 1, but alignment 4 is required
|
|
--> $DIR/raw-pointer-ub.rs:19:5
|
|
|
|
|
LL | y.copy_to_nonoverlapping(&mut z, 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ evaluation of constant value failed here
|
|
|
|
|
note: inside `std::ptr::copy_nonoverlapping::<u32>`
|
|
--> $SRC_DIR/core/src/ptr/mod.rs:LL:COL
|
|
|
|
error[E0080]: accessing memory based on pointer with alignment 4, but alignment 16 is required
|
|
--> $DIR/raw-pointer-ub.rs:33:16
|
|
|
|
|
LL | let _val = (*ptr).0;
|
|
| ^^^^^^^^ evaluation of constant value failed here
|
|
|
|
error[E0080]: memory access failed: attempting to access 8 bytes, but got ALLOC0 which is only 4 bytes from the end of the allocation
|
|
--> $DIR/raw-pointer-ub.rs:40:16
|
|
|
|
|
LL | let _val = *ptr;
|
|
| ^^^^ evaluation of constant value failed here
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0080`.
|