mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
17 lines
416 B
Text
17 lines
416 B
Text
|
warning: `0 as *const _` detected. Consider using `ptr::null()`
|
||
|
--> $DIR/zero_ptr.rs:6:13
|
||
|
|
|
||
|
6 | let x = 0 as *const usize;
|
||
|
| ^^^^^^^^^^^^^^^^^
|
||
|
|
|
||
|
= note: #[warn(zero_ptr)] on by default
|
||
|
|
||
|
warning: `0 as *mut _` detected. Consider using `ptr::null_mut()`
|
||
|
--> $DIR/zero_ptr.rs:7:13
|
||
|
|
|
||
|
7 | let y = 0 as *mut f64;
|
||
|
| ^^^^^^^^^^^^^
|
||
|
|
|
||
|
= note: #[warn(zero_ptr)] on by default
|
||
|
|