summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/transmute_32bit.stderr
blob: 75ddca60d2aaa5748d9ae8a654cc3c9c0123c90d (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
error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
  --> $DIR/transmute_32bit.rs:6:31
   |
LL |         let _: *const usize = std::mem::transmute(6.0f32);
   |                               ^^^^^^^^^^^^^^^^^^^
   |
   = note: source type: `f32` (32 bits)
   = note: target type: `*const usize` (64 bits)

error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
  --> $DIR/transmute_32bit.rs:8:29
   |
LL |         let _: *mut usize = std::mem::transmute(6.0f32);
   |                             ^^^^^^^^^^^^^^^^^^^
   |
   = note: source type: `f32` (32 bits)
   = note: target type: `*mut usize` (64 bits)

error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
  --> $DIR/transmute_32bit.rs:10:31
   |
LL |         let _: *const usize = std::mem::transmute('x');
   |                               ^^^^^^^^^^^^^^^^^^^
   |
   = note: source type: `char` (32 bits)
   = note: target type: `*const usize` (64 bits)

error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
  --> $DIR/transmute_32bit.rs:12:29
   |
LL |         let _: *mut usize = std::mem::transmute('x');
   |                             ^^^^^^^^^^^^^^^^^^^
   |
   = note: source type: `char` (32 bits)
   = note: target type: `*mut usize` (64 bits)

error: aborting due to 4 previous errors

For more information about this error, try `rustc --explain E0512`.