2018-09-16 16:47:37 +02:00
|
|
|
//error-pattern: invalid use of NULL pointer
|
|
|
|
|
|
|
|
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.
|
2018-09-16 16:47:37 +02:00
|
|
|
unsafe { ptr.copy_from(std::ptr::null(), 0); }
|
|
|
|
}
|