blob: 57679a8ac564f0f89c96b6e20de6fb70703fb599 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
error: `0 as *const _` detected
--> $DIR/zero_ptr.rs:4:13
|
LL | let _ = 0 as *const usize;
| ^^^^^^^^^^^^^^^^^ help: try: `std::ptr::null::<usize>()`
|
= note: `-D clippy::zero-ptr` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::zero_ptr)]`
error: `0 as *mut _` detected
--> $DIR/zero_ptr.rs:5:13
|
LL | let _ = 0 as *mut f64;
| ^^^^^^^^^^^^^ help: try: `std::ptr::null_mut::<f64>()`
error: `0 as *const _` detected
--> $DIR/zero_ptr.rs:6:24
|
LL | let _: *const u8 = 0 as *const _;
| ^^^^^^^^^^^^^ help: try: `std::ptr::null()`
error: `0 as *const _` detected
--> $DIR/zero_ptr.rs:9:9
|
LL | foo(0 as *const _, 0 as *mut _);
| ^^^^^^^^^^^^^ help: try: `std::ptr::null()`
error: `0 as *mut _` detected
--> $DIR/zero_ptr.rs:9:24
|
LL | foo(0 as *const _, 0 as *mut _);
| ^^^^^^^^^^^ help: try: `std::ptr::null_mut()`
error: aborting due to 5 previous errors
|