mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
16 lines
444 B
Text
16 lines
444 B
Text
error: Comparing with null is better expressed by the .is_null() method
|
|
--> $DIR/cmp_null.rs:9:8
|
|
|
|
|
LL | if p == ptr::null() {
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::cmp-null` implied by `-D warnings`
|
|
|
|
error: Comparing with null is better expressed by the .is_null() method
|
|
--> $DIR/cmp_null.rs:14:8
|
|
|
|
|
LL | if m == ptr::null_mut() {
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|