2020-02-16 14:01:00 +01: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 16:47:37 +02:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut data = [0u16; 4];
|
|
|
|
let ptr = &mut data[0] as *mut u16;
|
2019-02-16 01:43:56 +00:00
|
|
|
// Even copying 0 elements from NULL should error.
|
2022-06-21 11:38:02 -07:00
|
|
|
unsafe {
|
2022-07-05 18:16:20 -04:00
|
|
|
copy_nonoverlapping(std::ptr::null(), ptr, 0); //~ ERROR: memory access failed: null pointer is a dangling pointer
|
2022-06-21 11:40:02 -07:00
|
|
|
}
|
2018-09-16 16:47:37 +02:00
|
|
|
}
|