mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-21 10:33:27 +00:00
22 lines
571 B
Text
22 lines
571 B
Text
|
error: `0 as *const _` detected. Consider using `ptr::null()`
|
||
|
--> examples/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()`
|
||
|
--> examples/zero_ptr.rs:7:13
|
||
|
|
|
||
|
7 | let y = 0 as *mut f64;
|
||
|
| ^^^^^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D zero-ptr` implied by `-D warnings`
|
||
|
|
||
|
error: aborting due to 2 previous errors
|
||
|
|
||
|
error: Could not compile `clippy_tests`.
|
||
|
|
||
|
To learn more, run the command again with --verbose.
|