2017-02-07 20:05:30 +00:00
|
|
|
error: Comparing with null is better expressed by the .is_null() method
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/cmp_null.rs:11:8
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
11 | if p == ptr::null() {
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D cmp-null` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: Comparing with null is better expressed by the .is_null() method
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/cmp_null.rs:16:8
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
16 | if m == ptr::null_mut() {
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2017-07-03 04:37:30 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2017-02-07 20:05:30 +00:00
|
|
|
|