2024-07-25 16:29:17 +00:00
|
|
|
error: casts from `i8` to `f32` can be expressed infallibly using `From`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/cast_lossless_float.rs:12:13
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2021-10-11 14:13:50 +00:00
|
|
|
LL | let _ = x0 as f32;
|
2024-07-25 16:29:17 +00:00
|
|
|
| ^^^^^^^^^
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2024-07-25 16:29:17 +00:00
|
|
|
= help: an `as` cast can become silently lossy if the types change in the future
|
2018-10-06 16:18:06 +00:00
|
|
|
= note: `-D clippy::cast-lossless` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::cast_lossless)]`
|
2024-07-25 16:29:17 +00:00
|
|
|
help: use `f32::from` instead
|
|
|
|
|
|
|
|
|
LL | let _ = f32::from(x0);
|
|
|
|
| ~~~~~~~~~~~~~
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2024-07-25 16:29:17 +00:00
|
|
|
error: casts from `i8` to `f64` can be expressed infallibly using `From`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/cast_lossless_float.rs:13:13
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2021-10-11 14:13:50 +00:00
|
|
|
LL | let _ = x0 as f64;
|
2024-07-25 16:29:17 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: an `as` cast can become silently lossy if the types change in the future
|
|
|
|
help: use `f64::from` instead
|
|
|
|
|
|
|
|
|
LL | let _ = f64::from(x0);
|
|
|
|
| ~~~~~~~~~~~~~
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2024-07-25 16:29:17 +00:00
|
|
|
error: casts from `i8` to `f32` can be expressed infallibly using `From`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/cast_lossless_float.rs:14:13
|
2024-03-21 21:20:40 +00:00
|
|
|
|
|
|
|
|
LL | let _ = x0 as F32;
|
2024-07-25 16:29:17 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: an `as` cast can become silently lossy if the types change in the future
|
|
|
|
help: use `F32::from` instead
|
|
|
|
|
|
|
|
|
LL | let _ = F32::from(x0);
|
|
|
|
| ~~~~~~~~~~~~~
|
2024-03-21 21:20:40 +00:00
|
|
|
|
2024-07-25 16:29:17 +00:00
|
|
|
error: casts from `i8` to `f64` can be expressed infallibly using `From`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/cast_lossless_float.rs:15:13
|
2024-03-21 21:20:40 +00:00
|
|
|
|
|
|
|
|
LL | let _ = x0 as F64;
|
2024-07-25 16:29:17 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: an `as` cast can become silently lossy if the types change in the future
|
|
|
|
help: use `F64::from` instead
|
|
|
|
|
|
|
|
|
LL | let _ = F64::from(x0);
|
|
|
|
| ~~~~~~~~~~~~~
|
2024-03-21 21:20:40 +00:00
|
|
|
|
2024-07-25 16:29:17 +00:00
|
|
|
error: casts from `u8` to `f32` can be expressed infallibly using `From`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/cast_lossless_float.rs:17:13
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2021-10-11 14:13:50 +00:00
|
|
|
LL | let _ = x1 as f32;
|
2024-07-25 16:29:17 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: an `as` cast can become silently lossy if the types change in the future
|
|
|
|
help: use `f32::from` instead
|
|
|
|
|
|
|
|
|
LL | let _ = f32::from(x1);
|
|
|
|
| ~~~~~~~~~~~~~
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2024-07-25 16:29:17 +00:00
|
|
|
error: casts from `u8` to `f64` can be expressed infallibly using `From`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/cast_lossless_float.rs:18:13
|
2018-08-01 14:30:44 +00:00
|
|
|
|
|
2021-10-11 14:13:50 +00:00
|
|
|
LL | let _ = x1 as f64;
|
2024-07-25 16:29:17 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: an `as` cast can become silently lossy if the types change in the future
|
|
|
|
help: use `f64::from` instead
|
|
|
|
|
|
|
|
|
LL | let _ = f64::from(x1);
|
|
|
|
| ~~~~~~~~~~~~~
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2024-07-25 16:29:17 +00:00
|
|
|
error: casts from `i16` to `f32` can be expressed infallibly using `From`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/cast_lossless_float.rs:20:13
|
2018-08-01 14:30:44 +00:00
|
|
|
|
|
2021-10-11 14:13:50 +00:00
|
|
|
LL | let _ = x2 as f32;
|
2024-07-25 16:29:17 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: an `as` cast can become silently lossy if the types change in the future
|
|
|
|
help: use `f32::from` instead
|
|
|
|
|
|
|
|
|
LL | let _ = f32::from(x2);
|
|
|
|
| ~~~~~~~~~~~~~
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2024-07-25 16:29:17 +00:00
|
|
|
error: casts from `i16` to `f64` can be expressed infallibly using `From`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/cast_lossless_float.rs:21:13
|
2018-01-05 23:23:28 +00:00
|
|
|
|
|
2021-10-11 14:13:50 +00:00
|
|
|
LL | let _ = x2 as f64;
|
2024-07-25 16:29:17 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: an `as` cast can become silently lossy if the types change in the future
|
|
|
|
help: use `f64::from` instead
|
|
|
|
|
|
|
|
|
LL | let _ = f64::from(x2);
|
|
|
|
| ~~~~~~~~~~~~~
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2024-07-25 16:29:17 +00:00
|
|
|
error: casts from `u16` to `f32` can be expressed infallibly using `From`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/cast_lossless_float.rs:23:13
|
2018-01-05 23:23:28 +00:00
|
|
|
|
|
2021-10-11 14:13:50 +00:00
|
|
|
LL | let _ = x3 as f32;
|
2024-07-25 16:29:17 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: an `as` cast can become silently lossy if the types change in the future
|
|
|
|
help: use `f32::from` instead
|
|
|
|
|
|
|
|
|
LL | let _ = f32::from(x3);
|
|
|
|
| ~~~~~~~~~~~~~
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2024-07-25 16:29:17 +00:00
|
|
|
error: casts from `u16` to `f64` can be expressed infallibly using `From`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/cast_lossless_float.rs:24:13
|
2018-01-05 23:23:28 +00:00
|
|
|
|
|
2021-10-11 14:13:50 +00:00
|
|
|
LL | let _ = x3 as f64;
|
2024-07-25 16:29:17 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: an `as` cast can become silently lossy if the types change in the future
|
|
|
|
help: use `f64::from` instead
|
|
|
|
|
|
|
|
|
LL | let _ = f64::from(x3);
|
|
|
|
| ~~~~~~~~~~~~~
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2024-07-25 16:29:17 +00:00
|
|
|
error: casts from `i32` to `f64` can be expressed infallibly using `From`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/cast_lossless_float.rs:26:13
|
2018-01-05 23:23:28 +00:00
|
|
|
|
|
2021-10-11 14:13:50 +00:00
|
|
|
LL | let _ = x4 as f64;
|
2024-07-25 16:29:17 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: an `as` cast can become silently lossy if the types change in the future
|
|
|
|
help: use `f64::from` instead
|
|
|
|
|
|
|
|
|
LL | let _ = f64::from(x4);
|
|
|
|
| ~~~~~~~~~~~~~
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2024-07-25 16:29:17 +00:00
|
|
|
error: casts from `u32` to `f64` can be expressed infallibly using `From`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/cast_lossless_float.rs:28:13
|
2018-01-05 23:23:28 +00:00
|
|
|
|
|
2021-10-11 14:13:50 +00:00
|
|
|
LL | let _ = x5 as f64;
|
2024-07-25 16:29:17 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: an `as` cast can become silently lossy if the types change in the future
|
|
|
|
help: use `f64::from` instead
|
|
|
|
|
|
|
|
|
LL | let _ = f64::from(x5);
|
|
|
|
| ~~~~~~~~~~~~~
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2024-07-25 16:29:17 +00:00
|
|
|
error: casts from `f32` to `f64` can be expressed infallibly using `From`
|
2024-06-18 17:34:49 +00:00
|
|
|
--> tests/ui/cast_lossless_float.rs:31:13
|
2019-04-17 19:03:22 +00:00
|
|
|
|
|
2021-10-11 14:13:50 +00:00
|
|
|
LL | let _ = 1.0f32 as f64;
|
2024-07-25 16:29:17 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: an `as` cast can become silently lossy if the types change in the future
|
|
|
|
help: use `f64::from` instead
|
|
|
|
|
|
|
|
|
LL | let _ = f64::from(1.0f32);
|
|
|
|
| ~~~~~~~~~~~~~~~~~
|
2019-04-17 19:03:22 +00:00
|
|
|
|
2024-03-21 21:20:40 +00:00
|
|
|
error: aborting due to 13 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|