]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/transmutes_expressible_as_ptr_casts.stderr
Auto merge of #105650 - cassaundra:float-literal-suggestion, r=pnkfelix
[rust.git] / src / tools / clippy / tests / ui / transmutes_expressible_as_ptr_casts.stderr
1 error: transmute from an integer to a pointer
2   --> $DIR/transmutes_expressible_as_ptr_casts.rs:18:39
3    |
4 LL |     let _ptr_i32_transmute = unsafe { transmute::<usize, *const i32>(usize::MAX) };
5    |                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `usize::MAX as *const i32`
6    |
7    = note: `-D clippy::useless-transmute` implied by `-D warnings`
8
9 error: transmute from a pointer to a pointer
10   --> $DIR/transmutes_expressible_as_ptr_casts.rs:22:38
11    |
12 LL |     let _ptr_i8_transmute = unsafe { transmute::<*const i32, *const i8>(ptr_i32) };
13    |                                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr_i32 as *const i8`
14    |
15    = note: `-D clippy::transmute-ptr-to-ptr` implied by `-D warnings`
16
17 error: transmute from a pointer to a pointer
18   --> $DIR/transmutes_expressible_as_ptr_casts.rs:28:46
19    |
20 LL |     let _ptr_to_unsized_transmute = unsafe { transmute::<*const [i32], *const [u32]>(slice_ptr) };
21    |                                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `slice_ptr as *const [u32]`
22
23 error: transmute from `*const i32` to `usize` which could be expressed as a pointer cast instead
24   --> $DIR/transmutes_expressible_as_ptr_casts.rs:34:50
25    |
26 LL |     let _usize_from_int_ptr_transmute = unsafe { transmute::<*const i32, usize>(ptr_i32) };
27    |                                                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr_i32 as usize`
28    |
29    = note: `-D clippy::transmutes-expressible-as-ptr-casts` implied by `-D warnings`
30
31 error: transmute from a reference to a pointer
32   --> $DIR/transmutes_expressible_as_ptr_casts.rs:40:41
33    |
34 LL |     let _array_ptr_transmute = unsafe { transmute::<&[i32; 4], *const [i32; 4]>(array_ref) };
35    |                                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `array_ref as *const [i32; 4]`
36
37 error: transmute from `fn(usize) -> u8` to `*const usize` which could be expressed as a pointer cast instead
38   --> $DIR/transmutes_expressible_as_ptr_casts.rs:48:41
39    |
40 LL |     let _usize_ptr_transmute = unsafe { transmute::<fn(usize) -> u8, *const usize>(foo) };
41    |                                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `foo as *const usize`
42
43 error: transmute from `fn(usize) -> u8` to `usize` which could be expressed as a pointer cast instead
44   --> $DIR/transmutes_expressible_as_ptr_casts.rs:52:49
45    |
46 LL |     let _usize_from_fn_ptr_transmute = unsafe { transmute::<fn(usize) -> u8, usize>(foo) };
47    |                                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `foo as usize`
48
49 error: transmute from `*const u32` to `usize` which could be expressed as a pointer cast instead
50   --> $DIR/transmutes_expressible_as_ptr_casts.rs:55:36
51    |
52 LL |     let _usize_from_ref = unsafe { transmute::<*const u32, usize>(&1u32) };
53    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&1u32 as *const u32 as usize`
54
55 error: transmute from a reference to a pointer
56   --> $DIR/transmutes_expressible_as_ptr_casts.rs:66:14
57    |
58 LL |     unsafe { transmute::<&[i32; 1], *const u8>(in_param) }
59    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `in_param as *const [i32; 1] as *const u8`
60
61 error: aborting due to 9 previous errors
62