summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/cast_lossless_float.stderr
blob: 0ed09f3083c285687efcd53a7afc0fcb920903c4 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
error: casting `i8` to `f32` may become silently lossy if you later change the type
  --> $DIR/cast_lossless_float.rs:9:5
   |
LL |     x0 as f32;
   |     ^^^^^^^^^ help: try: `f32::from(x0)`
   |
   = note: `-D clippy::cast-lossless` implied by `-D warnings`

error: casting `i8` to `f64` may become silently lossy if you later change the type
  --> $DIR/cast_lossless_float.rs:10:5
   |
LL |     x0 as f64;
   |     ^^^^^^^^^ help: try: `f64::from(x0)`

error: casting `u8` to `f32` may become silently lossy if you later change the type
  --> $DIR/cast_lossless_float.rs:12:5
   |
LL |     x1 as f32;
   |     ^^^^^^^^^ help: try: `f32::from(x1)`

error: casting `u8` to `f64` may become silently lossy if you later change the type
  --> $DIR/cast_lossless_float.rs:13:5
   |
LL |     x1 as f64;
   |     ^^^^^^^^^ help: try: `f64::from(x1)`

error: casting `i16` to `f32` may become silently lossy if you later change the type
  --> $DIR/cast_lossless_float.rs:15:5
   |
LL |     x2 as f32;
   |     ^^^^^^^^^ help: try: `f32::from(x2)`

error: casting `i16` to `f64` may become silently lossy if you later change the type
  --> $DIR/cast_lossless_float.rs:16:5
   |
LL |     x2 as f64;
   |     ^^^^^^^^^ help: try: `f64::from(x2)`

error: casting `u16` to `f32` may become silently lossy if you later change the type
  --> $DIR/cast_lossless_float.rs:18:5
   |
LL |     x3 as f32;
   |     ^^^^^^^^^ help: try: `f32::from(x3)`

error: casting `u16` to `f64` may become silently lossy if you later change the type
  --> $DIR/cast_lossless_float.rs:19:5
   |
LL |     x3 as f64;
   |     ^^^^^^^^^ help: try: `f64::from(x3)`

error: casting `i32` to `f64` may become silently lossy if you later change the type
  --> $DIR/cast_lossless_float.rs:21:5
   |
LL |     x4 as f64;
   |     ^^^^^^^^^ help: try: `f64::from(x4)`

error: casting `u32` to `f64` may become silently lossy if you later change the type
  --> $DIR/cast_lossless_float.rs:23:5
   |
LL |     x5 as f64;
   |     ^^^^^^^^^ help: try: `f64::from(x5)`

error: casting `f32` to `f64` may become silently lossy if you later change the type
  --> $DIR/cast_lossless_float.rs:26:5
   |
LL |     1.0f32 as f64;
   |     ^^^^^^^^^^^^^ help: try: `f64::from(1.0f32)`

error: aborting due to 11 previous errors