rust/tests/ui/zero_ptr.stderr

17 lines
433 B
Plaintext
Raw Normal View History

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