rust/tests/ui/zero_ptr.stderr

17 lines
435 B
Plaintext
Raw Normal View History

error: `0 as *const _` detected. Consider using `ptr::null()`
2018-12-10 13:27:19 +08:00
--> $DIR/zero_ptr.rs:12:13
2018-10-07 00:18:06 +08:00
|
2018-12-27 23:57:55 +08:00
LL | let x = 0 as *const usize;
2018-10-07 00:18:06 +08:00
| ^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::zero-ptr` implied by `-D warnings`
error: `0 as *mut _` detected. Consider using `ptr::null_mut()`
2018-12-10 13:27:19 +08:00
--> $DIR/zero_ptr.rs:13:13
2018-10-07 00:18:06 +08:00
|
2018-12-27 23:57:55 +08:00
LL | let y = 0 as *mut f64;
2018-10-07 00:18:06 +08:00
| ^^^^^^^^^^^^^
2018-01-17 00:06:27 +08:00
error: aborting due to 2 previous errors