2020-01-06 06:36:33 +00:00
|
|
|
error: casting `i8` to `f32` may become silently lossy if you later change the type
|
2019-03-12 07:49:26 +00:00
|
|
|
--> $DIR/cast_lossless_float.rs:9:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x0 as f32;
|
|
|
|
| ^^^^^^^^^ help: try: `f32::from(x0)`
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::cast-lossless` implied by `-D warnings`
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `i8` to `f64` may become silently lossy if you later change the type
|
2019-03-12 07:49:26 +00:00
|
|
|
--> $DIR/cast_lossless_float.rs:10:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x0 as f64;
|
|
|
|
| ^^^^^^^^^ help: try: `f64::from(x0)`
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `u8` to `f32` may become silently lossy if you later change the type
|
2019-03-12 07:49:26 +00:00
|
|
|
--> $DIR/cast_lossless_float.rs:12:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x1 as f32;
|
|
|
|
| ^^^^^^^^^ help: try: `f32::from(x1)`
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `u8` to `f64` may become silently lossy if you later change the type
|
2019-03-12 07:49:26 +00:00
|
|
|
--> $DIR/cast_lossless_float.rs:13:5
|
2018-08-01 14:30:44 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x1 as f64;
|
|
|
|
| ^^^^^^^^^ help: try: `f64::from(x1)`
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `i16` to `f32` may become silently lossy if you later change the type
|
2019-03-12 07:49:26 +00:00
|
|
|
--> $DIR/cast_lossless_float.rs:15:5
|
2018-08-01 14:30:44 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x2 as f32;
|
|
|
|
| ^^^^^^^^^ help: try: `f32::from(x2)`
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `i16` to `f64` may become silently lossy if you later change the type
|
2019-03-12 07:49:26 +00:00
|
|
|
--> $DIR/cast_lossless_float.rs:16:5
|
2018-01-05 23:23:28 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x2 as f64;
|
|
|
|
| ^^^^^^^^^ help: try: `f64::from(x2)`
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `u16` to `f32` may become silently lossy if you later change the type
|
2019-03-12 07:49:26 +00:00
|
|
|
--> $DIR/cast_lossless_float.rs:18:5
|
2018-01-05 23:23:28 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x3 as f32;
|
|
|
|
| ^^^^^^^^^ help: try: `f32::from(x3)`
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `u16` to `f64` may become silently lossy if you later change the type
|
2019-03-12 07:49:26 +00:00
|
|
|
--> $DIR/cast_lossless_float.rs:19:5
|
2018-01-05 23:23:28 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x3 as f64;
|
|
|
|
| ^^^^^^^^^ help: try: `f64::from(x3)`
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `i32` to `f64` may become silently lossy if you later change the type
|
2019-03-12 07:49:26 +00:00
|
|
|
--> $DIR/cast_lossless_float.rs:21:5
|
2018-01-05 23:23:28 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x4 as f64;
|
|
|
|
| ^^^^^^^^^ help: try: `f64::from(x4)`
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `u32` to `f64` may become silently lossy if you later change the type
|
2019-03-12 07:49:26 +00:00
|
|
|
--> $DIR/cast_lossless_float.rs:23:5
|
2018-01-05 23:23:28 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x5 as f64;
|
|
|
|
| ^^^^^^^^^ help: try: `f64::from(x5)`
|
2018-01-05 23:23:28 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `f32` to `f64` may become silently lossy if you later change the type
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $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
|
2018-01-16 16:06:27 +00:00
|
|
|
|