|
| 1 | +error: any use of this value will cause an error |
| 2 | + --> $DIR/copy-intrinsic.rs:16:5 |
| 3 | + | |
| 4 | +LL | / const COPY_OOB_1: () = unsafe { |
| 5 | +LL | | let mut x = 0i32; |
| 6 | +LL | | let dangle = (&mut x as *mut i32).wrapping_add(10); |
| 7 | +LL | | // Even if the first ptr is an int ptr and this is a ZST copy, we should detect dangling 2nd ptrs. |
| 8 | +LL | | ptr::copy_nonoverlapping(0x100 as *const i32, dangle, 0); |
| 9 | + | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ memory access failed: pointer must be in-bounds at offset 40, but is outside bounds of alloc4 which has size 4 |
| 10 | +LL | | |
| 11 | +LL | | |
| 12 | +LL | | }; |
| 13 | + | |__- |
| 14 | + | |
| 15 | + = note: `#[deny(const_err)]` on by default |
| 16 | + = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! |
| 17 | + = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800> |
| 18 | + |
| 19 | +error: any use of this value will cause an error |
| 20 | + --> $DIR/copy-intrinsic.rs:24:5 |
| 21 | + | |
| 22 | +LL | / const COPY_OOB_2: () = unsafe { |
| 23 | +LL | | let x = 0i32; |
| 24 | +LL | | let dangle = (&x as *const i32).wrapping_add(10); |
| 25 | +LL | | // Even if the second ptr is an int ptr and this is a ZST copy, we should detect dangling 1st ptrs. |
| 26 | +LL | | ptr::copy_nonoverlapping(dangle, 0x100 as *mut i32, 0); |
| 27 | + | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ memory access failed: pointer must be in-bounds at offset 40, but is outside bounds of alloc6 which has size 4 |
| 28 | +LL | | |
| 29 | +LL | | |
| 30 | +LL | | }; |
| 31 | + | |__- |
| 32 | + | |
| 33 | + = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! |
| 34 | + = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800> |
| 35 | + |
| 36 | +error: aborting due to 2 previous errors |
| 37 | + |
0 commit comments