]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/cmp_null.stderr
Fix `unnecessary_cast` suggestion when taking a reference
[rust.git] / tests / ui / cmp_null.stderr
index 68789b5b6358c3041532694a19c5c3cea1a34716..a1f4c70fb2786ede59a99564e629a4715ab3fca7 100644 (file)
@@ -1,13 +1,13 @@
-error: Comparing with null is better expressed by the .is_null() method
-  --> $DIR/cmp_null.rs:18:8
+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:23:8
+error: comparing with null is better expressed by the `.is_null()` method
+  --> $DIR/cmp_null.rs:14:8
    |
 LL |     if m == ptr::null_mut() {
    |        ^^^^^^^^^^^^^^^^^^^^