2020-02-16 07:01:00 -06:00
|
|
|
#![feature(intrinsics)]
|
|
|
|
|
|
|
|
// Directly call intrinsic to avoid debug assertions in libstd
|
|
|
|
extern "rust-intrinsic" {
|
|
|
|
fn copy_nonoverlapping<T>(src: *const T, dst: *mut T, count: usize);
|
|
|
|
}
|
2018-09-16 09:47:37 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut data = [0u16; 8];
|
|
|
|
let ptr = (&mut data[0] as *mut u16 as *mut u8).wrapping_add(1) as *mut u16;
|
|
|
|
// Even copying 0 elements to something unaligned should error
|
2022-06-21 13:38:02 -05:00
|
|
|
unsafe {
|
2022-06-21 13:40:02 -05:00
|
|
|
copy_nonoverlapping(&data[5], ptr, 0); //~ ERROR accessing memory with alignment 1, but alignment 2 is required
|
|
|
|
}
|
2018-09-16 09:47:37 -05:00
|
|
|
}
|