2017-02-07 20:05:30 +00:00
|
|
|
error: casting i32 to f32 causes a loss of precision (i32 is 32 bits wide, but f32's mantissa is only 23 bits wide)
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:11:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x0 as f32;
|
|
|
|
| ^^^^^^^^^
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::cast-precision-loss` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: casting i64 to f32 causes a loss of precision (i64 is 64 bits wide, but f32's mantissa is only 23 bits wide)
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:13:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x1 as f32;
|
|
|
|
| ^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: casting i64 to f64 causes a loss of precision (i64 is 64 bits wide, but f64's mantissa is only 52 bits wide)
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:14:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x1 as f64;
|
|
|
|
| ^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: casting u32 to f32 causes a loss of precision (u32 is 32 bits wide, but f32's mantissa is only 23 bits wide)
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:16:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x2 as f32;
|
|
|
|
| ^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: casting u64 to f32 causes a loss of precision (u64 is 64 bits wide, but f32's mantissa is only 23 bits wide)
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:18:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x3 as f32;
|
|
|
|
| ^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: casting u64 to f64 causes a loss of precision (u64 is 64 bits wide, but f64's mantissa is only 52 bits wide)
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:19:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x3 as f64;
|
|
|
|
| ^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `f32` to `i32` may truncate the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:21:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1f32 as i32;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::cast-possible-truncation` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `f32` to `u32` may truncate the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:22:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1f32 as u32;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `f32` to `u32` may lose the sign of the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:22:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1f32 as u32;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::cast-sign-loss` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `f64` to `f32` may truncate the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:23:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1f64 as f32;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `i32` to `i8` may truncate the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:24:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1i32 as i8;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `i32` to `u8` may truncate the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:25:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1i32 as u8;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `f64` to `isize` may truncate the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:26:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1f64 as isize;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `f64` to `usize` may truncate the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:27:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1f64 as usize;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `f64` to `usize` may lose the sign of the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:27:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1f64 as usize;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `u8` to `i8` may wrap around the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:29:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1u8 as i8;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::cast-possible-wrap` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `u16` to `i16` may wrap around the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:30:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1u16 as i16;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `u32` to `i32` may wrap around the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:31:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1u32 as i32;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `u64` to `i64` may wrap around the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:32:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1u64 as i64;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `usize` to `isize` may wrap around the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:33:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1usize as isize;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `i32` to `u32` may lose the sign of the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:36:5
|
2017-08-30 23:06:21 +00:00
|
|
|
|
|
2019-01-31 04:20:49 +00:00
|
|
|
LL | -1i32 as u32;
|
|
|
|
| ^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: casting `isize` to `usize` may lose the sign of the value
|
2019-04-17 19:03:22 +00:00
|
|
|
--> $DIR/cast.rs:38:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2019-01-31 04:20:49 +00:00
|
|
|
LL | -1isize as usize;
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2019-08-04 06:24:23 +00:00
|
|
|
error: aborting due to 22 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|