about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/zero_ptr.stderr
blob: 81269de6c607e1bdc602af4711584545b0c1125a (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
36
37
38
39
40
41
error: `0 as *const _` detected
  --> tests/ui/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
  --> tests/ui/zero_ptr.rs:6:13
   |
LL |     let _ = 0 as *mut f64;
   |             ^^^^^^^^^^^^^ help: try: `std::ptr::null_mut::<f64>()`

error: `0 as *const _` detected
  --> tests/ui/zero_ptr.rs:8:24
   |
LL |     let _: *const u8 = 0 as *const _;
   |                        ^^^^^^^^^^^^^ help: try: `std::ptr::null()`

error: `0 as *const _` detected
  --> tests/ui/zero_ptr.rs:12:9
   |
LL |     foo(0 as *const _, 0 as *mut _);
   |         ^^^^^^^^^^^^^ help: try: `std::ptr::null()`

error: `0 as *mut _` detected
  --> tests/ui/zero_ptr.rs:12:24
   |
LL |     foo(0 as *const _, 0 as *mut _);
   |                        ^^^^^^^^^^^ help: try: `std::ptr::null_mut()`

error: `0 as *const _` detected
  --> tests/ui/zero_ptr.rs:24:27
   |
LL |     let _: *const usize = 0 as *const _;
   |                           ^^^^^^^^^^^^^ help: try: `std::ptr::null()`

error: aborting due to 6 previous errors