rust-clippy/tests/ui/cmp_null.stderr

18 lines
526 B
Text
Raw Normal View History

error: comparing with null is better expressed by the `.is_null()` method
2024-02-17 12:16:29 +00:00
--> tests/ui/cmp_null.rs:9:8
|
2018-12-27 15:57:55 +00:00
LL | if p == ptr::null() {
| ^^^^^^^^^^^^^^^^
|
= note: `-D clippy::cmp-null` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::cmp_null)]`
error: comparing with null is better expressed by the `.is_null()` method
2024-02-17 12:16:29 +00:00
--> tests/ui/cmp_null.rs:16:8
|
2018-12-27 15:57:55 +00:00
LL | if m == ptr::null_mut() {
| ^^^^^^^^^^^^^^^^^^^^
2018-01-16 16:06:27 +00:00
error: aborting due to 2 previous errors