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; 4];
|
|
|
|
let ptr = &mut data[0] as *mut u16;
|
2019-02-15 19:43:56 -06:00
|
|
|
// Even copying 0 elements from NULL should error.
|
2022-06-21 13:38:02 -05:00
|
|
|
unsafe {
|
2022-06-21 13:40:02 -05:00
|
|
|
copy_nonoverlapping(std::ptr::null(), ptr, 0); //~ ERROR: memory access failed: null pointer is not a valid pointer
|
|
|
|
}
|
2018-09-16 09:47:37 -05:00
|
|
|
}
|