rust/tests/fail/intrinsics/copy_overflow.rs

11 lines
220 B
Rust
Raw Normal View History

use std::mem;
fn main() {
let x = 0;
let mut y = 0;
unsafe {
(&mut y as *mut i32).copy_from(&x, 1usize << (mem::size_of::<usize>() * 8 - 1));
2022-07-24 13:28:45 -05:00
//~^ERROR: overflow computing total size
}
}