rust/tests/ui/zero_ptr.stderr

17 lines
423 B
Plaintext
Raw Normal View History

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