rust-clippy/clippy_tests/examples/zero_ptr.stderr
2017-06-19 22:11:12 +02:00

20 lines
512 B
Text

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;
| ^^^^^^^^^^^^^
|
= note: `-D zero-ptr` implied by `-D warnings`
error: aborting due to previous error(s)
To learn more, run the command again with --verbose.