2019-10-02 15:38:00 +00:00
|
|
|
error: `0 as *const _` detected
|
|
|
|
--> $DIR/zero_ptr.rs:5:13
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2019-10-02 15:38:00 +00:00
|
|
|
LL | let _ = 0 as *const usize;
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `std::ptr::null::<usize>()`
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::zero-ptr` implied by `-D warnings`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2019-10-02 15:38:00 +00:00
|
|
|
error: `0 as *mut _` detected
|
|
|
|
--> $DIR/zero_ptr.rs:6:13
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2019-10-02 15:38:00 +00:00
|
|
|
LL | let _ = 0 as *mut f64;
|
|
|
|
| ^^^^^^^^^^^^^ help: try: `std::ptr::null_mut::<f64>()`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2019-10-02 15:38:00 +00:00
|
|
|
error: `0 as *const _` detected
|
|
|
|
--> $DIR/zero_ptr.rs:7:24
|
|
|
|
|
|
|
|
|
LL | let _: *const u8 = 0 as *const _;
|
|
|
|
| ^^^^^^^^^^^^^ help: try: `std::ptr::null()`
|
|
|
|
|
|
|
|
error: `0 as *const _` detected
|
|
|
|
--> $DIR/zero_ptr.rs:10:9
|
|
|
|
|
|
|
|
|
LL | foo(0 as *const _, 0 as *mut _);
|
|
|
|
| ^^^^^^^^^^^^^ help: try: `std::ptr::null()`
|
|
|
|
|
|
|
|
error: `0 as *mut _` detected
|
|
|
|
--> $DIR/zero_ptr.rs:10:24
|
|
|
|
|
|
|
|
|
LL | foo(0 as *const _, 0 as *mut _);
|
|
|
|
| ^^^^^^^^^^^ help: try: `std::ptr::null_mut()`
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|