rust/clippy_tests/examples/zero_ptr.stderr
2017-07-03 12:37:30 +08:00

19 lines
459 B
Plaintext

error: `0 as *const _` detected. Consider using `ptr::null()`
--> zero_ptr.rs:6:13
|
6 | let x = 0 as *const usize;
| ^^^^^^^^^^^^^^^^^
|
= note: `-D zero-ptr` implied by `-D warnings`
error: `0 as *mut _` detected. Consider using `ptr::null_mut()`
--> zero_ptr.rs:7:13
|
7 | let y = 0 as *mut f64;
| ^^^^^^^^^^^^^
error: aborting due to 2 previous errors
To learn more, run the command again with --verbose.