summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/zero_ptr_no_std.stderr
blob: d92bb4a6528dbb7afca9c2441db814366da63890 (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
error: `0 as *const _` detected
  --> $DIR/zero_ptr_no_std.rs:9:13
   |
LL |     let _ = 0 as *const usize;
   |             ^^^^^^^^^^^^^^^^^ help: try: `core::ptr::null::<usize>()`
   |
note: the lint level is defined here
  --> $DIR/zero_ptr_no_std.rs:5:9
   |
LL | #![deny(clippy::zero_ptr)]
   |         ^^^^^^^^^^^^^^^^

error: `0 as *mut _` detected
  --> $DIR/zero_ptr_no_std.rs:10:13
   |
LL |     let _ = 0 as *mut f64;
   |             ^^^^^^^^^^^^^ help: try: `core::ptr::null_mut::<f64>()`

error: `0 as *const _` detected
  --> $DIR/zero_ptr_no_std.rs:11:24
   |
LL |     let _: *const u8 = 0 as *const _;
   |                        ^^^^^^^^^^^^^ help: try: `core::ptr::null()`

error: aborting due to 3 previous errors