2018-09-16 09:47:37 -05: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-15 19:43:56 -06:00
|
|
|
// Even copying 0 elements from NULL should error.
|
2018-09-16 09:47:37 -05:00
|
|
|
unsafe { ptr.copy_from(std::ptr::null(), 0); }
|
|
|
|
}
|