2020-01-08 06:08:49 +09: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)
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:16:5
|
2018-10-06 09:18:06 -07:00
|
|
|
|
|
2019-03-12 15:49:26 +08:00
|
|
|
LL | x0 as f32;
|
|
|
|
| ^^^^^^^^^
|
2018-10-06 09:18:06 -07:00
|
|
|
|
|
|
|
|
= note: `-D clippy::cast-precision-loss` implied by `-D warnings`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-08 06:08:49 +09: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)
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:18:5
|
2018-10-06 09:18:06 -07:00
|
|
|
|
|
2019-03-12 15:49:26 +08:00
|
|
|
LL | x1 as f32;
|
|
|
|
| ^^^^^^^^^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-08 06:08:49 +09: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)
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:19:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2019-03-12 15:49:26 +08:00
|
|
|
LL | x1 as f64;
|
|
|
|
| ^^^^^^^^^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-08 06:08:49 +09: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)
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:21:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2019-03-12 15:49:26 +08:00
|
|
|
LL | x2 as f32;
|
|
|
|
| ^^^^^^^^^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-08 06:08:49 +09: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)
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:23:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2019-03-12 15:49:26 +08:00
|
|
|
LL | x3 as f32;
|
|
|
|
| ^^^^^^^^^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-08 06:08:49 +09: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)
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:24:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2019-03-12 15:49:26 +08:00
|
|
|
LL | x3 as f64;
|
|
|
|
| ^^^^^^^^^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `f32` to `i32` may truncate the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:26:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 1f32 as i32;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: `-D clippy::cast-possible-truncation` implied by `-D warnings`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `f32` to `u32` may truncate the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:27:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 1f32 as u32;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `f32` to `u32` may lose the sign of the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:27:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 1f32 as u32;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: `-D clippy::cast-sign-loss` implied by `-D warnings`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `f64` to `f32` may truncate the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:28:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 1f64 as f32;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `i32` to `i8` may truncate the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:29:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 1i32 as i8;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2022-12-06 19:05:22 +01:00
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
|
|
|
LL | i8::try_from(1i32);
|
|
|
|
| ~~~~~~~~~~~~~~~~~~
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `i32` to `u8` may truncate the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:30:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 1i32 as u8;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2022-12-06 19:05:22 +01:00
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
|
|
|
LL | u8::try_from(1i32);
|
|
|
|
| ~~~~~~~~~~~~~~~~~~
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `f64` to `isize` may truncate the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:31:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 1f64 as isize;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `f64` to `usize` may truncate the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:32:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 1f64 as usize;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `f64` to `usize` may lose the sign of the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:32:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 1f64 as usize;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
2023-01-12 12:35:29 +01:00
|
|
|
error: casting `u32` to `u16` may truncate the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:33:5
|
2023-01-12 12:35:29 +01:00
|
|
|
|
|
|
|
|
LL | 1f32 as u32 as u16;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2023-01-12 12:35:29 +01:00
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
|
|
|
LL | u16::try_from(1f32 as u32);
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: casting `f32` to `u32` may truncate the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:33:5
|
2023-01-12 12:35:29 +01:00
|
|
|
|
|
|
|
|
LL | 1f32 as u32 as u16;
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2023-01-12 12:35:29 +01:00
|
|
|
|
|
|
|
error: casting `f32` to `u32` may lose the sign of the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:33:5
|
2023-01-12 12:35:29 +01:00
|
|
|
|
|
|
|
|
LL | 1f32 as u32 as u16;
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
2023-03-14 09:15:23 +08:00
|
|
|
error: casting `i32` to `i8` may truncate the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:35:22
|
2023-03-14 09:15:23 +08:00
|
|
|
|
|
|
|
|
LL | let _x: i8 = 1i32 as _;
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
|
|
|
LL | let _x: i8 = 1i32.try_into();
|
|
|
|
| ~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: casting `f32` to `i32` may truncate the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:36:9
|
2023-03-14 09:15:23 +08:00
|
|
|
|
|
|
|
|
LL | 1f32 as i32;
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
|
|
|
|
|
|
|
error: casting `f64` to `i32` may truncate the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:37:9
|
2023-03-14 09:15:23 +08:00
|
|
|
|
|
|
|
|
LL | 1f64 as i32;
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
|
|
|
|
|
|
|
error: casting `f32` to `u8` may truncate the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:38:9
|
2023-03-14 09:15:23 +08:00
|
|
|
|
|
|
|
|
LL | 1f32 as u8;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
|
|
|
|
|
|
|
error: casting `f32` to `u8` may lose the sign of the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:38:9
|
2023-03-14 09:15:23 +08:00
|
|
|
|
|
|
|
|
LL | 1f32 as u8;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `u8` to `i8` may wrap around the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:41:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 1u8 as i8;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: `-D clippy::cast-possible-wrap` implied by `-D warnings`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `u16` to `i16` may wrap around the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:42:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 1u16 as i16;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `u32` to `i32` may wrap around the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:43:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 1u32 as i32;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `u64` to `i64` may wrap around the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:44:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 1u64 as i64;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `usize` to `isize` may wrap around the value
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/cast.rs:45:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 1usize as isize;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
2023-03-28 23:30:20 -04:00
|
|
|
error: casting `usize` to `i8` may truncate the value
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:47:5
|
2023-03-28 23:30:20 -04:00
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | 1usize as i8;
|
2023-03-28 23:30:20 -04:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | i8::try_from(1usize);
|
2023-03-28 23:30:20 -04:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: casting `usize` to `i16` may truncate the value
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:49:5
|
2023-03-28 23:30:20 -04:00
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | 1usize as i16;
|
2023-03-28 23:30:20 -04:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | i16::try_from(1usize);
|
2023-03-28 23:30:20 -04:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: casting `usize` to `i16` may wrap around the value on targets with 16-bit wide pointers
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:49:5
|
2023-03-28 23:30:20 -04:00
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | 1usize as i16;
|
2023-03-28 23:30:20 -04:00
|
|
|
| ^^^^^^^^^^^^^
|
2023-06-06 14:58:54 -04:00
|
|
|
|
|
|
|
|
= note: `usize` and `isize` may be as small as 16 bits on some platforms
|
|
|
|
= note: for more information see https://doc.rust-lang.org/reference/types/numeric.html#machine-dependent-integer-types
|
2023-03-28 23:30:20 -04:00
|
|
|
|
|
|
|
error: casting `usize` to `i32` may truncate the value on targets with 64-bit wide pointers
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:51:5
|
2017-08-30 16:06:21 -07:00
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | 1usize as i32;
|
2023-03-28 23:30:20 -04:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | i32::try_from(1usize);
|
2023-03-28 23:30:20 -04:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: casting `usize` to `i32` may wrap around the value on targets with 32-bit wide pointers
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:51:5
|
2023-03-28 23:30:20 -04:00
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | 1usize as i32;
|
2023-03-28 23:30:20 -04:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: casting `usize` to `i64` may wrap around the value on targets with 64-bit wide pointers
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:53:5
|
2023-03-28 23:30:20 -04:00
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | 1usize as i64;
|
2023-03-28 23:30:20 -04:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: casting `u16` to `isize` may wrap around the value on targets with 16-bit wide pointers
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:57:5
|
2023-03-28 23:30:20 -04:00
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | 1u16 as isize;
|
2023-03-28 23:30:20 -04:00
|
|
|
| ^^^^^^^^^^^^^
|
2023-06-06 14:58:54 -04:00
|
|
|
|
|
|
|
|
= note: `usize` and `isize` may be as small as 16 bits on some platforms
|
|
|
|
= note: for more information see https://doc.rust-lang.org/reference/types/numeric.html#machine-dependent-integer-types
|
2023-03-28 23:30:20 -04:00
|
|
|
|
|
|
|
error: casting `u32` to `isize` may wrap around the value on targets with 32-bit wide pointers
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:59:5
|
2023-03-28 23:30:20 -04:00
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | 1u32 as isize;
|
2023-03-28 23:30:20 -04:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: casting `u64` to `isize` may truncate the value on targets with 32-bit wide pointers
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:61:5
|
2023-03-28 23:30:20 -04:00
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | 1u64 as isize;
|
2023-03-28 23:30:20 -04:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | isize::try_from(1u64);
|
2023-03-28 23:30:20 -04:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: casting `u64` to `isize` may wrap around the value on targets with 64-bit wide pointers
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:61:5
|
2023-03-28 23:30:20 -04:00
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | 1u64 as isize;
|
2023-03-28 23:30:20 -04:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: casting `i32` to `u32` may lose the sign of the value
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:64:5
|
2023-03-28 23:30:20 -04:00
|
|
|
|
|
2019-01-31 06:20:49 +02:00
|
|
|
LL | -1i32 as u32;
|
|
|
|
| ^^^^^^^^^^^^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: casting `isize` to `usize` may lose the sign of the value
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:66:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2019-01-31 06:20:49 +02:00
|
|
|
LL | -1isize as usize;
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2021-10-13 13:45:53 +02:00
|
|
|
error: casting `i64` to `i8` may truncate the value
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:134:5
|
2021-10-13 13:45:53 +02:00
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | (-99999999999i64).min(1) as i8;
|
2021-10-13 13:45:53 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2022-12-06 19:05:22 +01:00
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | i8::try_from((-99999999999i64).min(1));
|
2022-12-06 19:05:22 +01:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-10-13 13:45:53 +02:00
|
|
|
|
|
|
|
error: casting `u64` to `u8` may truncate the value
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:147:5
|
2021-10-13 13:45:53 +02:00
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | 999999u64.clamp(0, 256) as u8;
|
2021-10-13 13:45:53 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2022-12-06 19:05:22 +01:00
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | u8::try_from(999999u64.clamp(0, 256));
|
2022-12-06 19:05:22 +01:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-10-13 13:45:53 +02:00
|
|
|
|
2022-01-31 15:45:49 -05:00
|
|
|
error: casting `main::E2` to `u8` may truncate the value
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:169:21
|
2022-01-31 15:45:49 -05:00
|
|
|
|
|
|
|
|
LL | let _ = self as u8;
|
|
|
|
| ^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2022-12-06 19:05:22 +01:00
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
|
|
|
LL | let _ = u8::try_from(self);
|
|
|
|
| ~~~~~~~~~~~~~~~~~~
|
2022-01-31 15:45:49 -05:00
|
|
|
|
2022-01-31 21:22:47 -05:00
|
|
|
error: casting `main::E2::B` to `u8` will truncate the value
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:170:21
|
2022-01-31 21:22:47 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Self::B as u8;
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::cast-enum-truncation` implied by `-D warnings`
|
|
|
|
|
2022-01-31 15:45:49 -05:00
|
|
|
error: casting `main::E5` to `i8` may truncate the value
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:210:21
|
2022-01-31 15:45:49 -05:00
|
|
|
|
|
|
|
|
LL | let _ = self as i8;
|
|
|
|
| ^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2022-12-06 19:05:22 +01:00
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
|
|
|
LL | let _ = i8::try_from(self);
|
|
|
|
| ~~~~~~~~~~~~~~~~~~
|
2022-01-31 15:45:49 -05:00
|
|
|
|
2022-01-31 21:22:47 -05:00
|
|
|
error: casting `main::E5::A` to `i8` will truncate the value
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:211:21
|
2022-01-31 21:22:47 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Self::A as i8;
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
2022-01-31 15:45:49 -05:00
|
|
|
error: casting `main::E6` to `i16` may truncate the value
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:227:21
|
2022-01-31 15:45:49 -05:00
|
|
|
|
|
|
|
|
LL | let _ = self as i16;
|
|
|
|
| ^^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2022-12-06 19:05:22 +01:00
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
|
|
|
LL | let _ = i16::try_from(self);
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~
|
2022-01-31 15:45:49 -05:00
|
|
|
|
|
|
|
error: casting `main::E7` to `usize` may truncate the value on targets with 32-bit wide pointers
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:245:21
|
2022-01-31 15:45:49 -05:00
|
|
|
|
|
|
|
|
LL | let _ = self as usize;
|
|
|
|
| ^^^^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2022-12-06 19:05:22 +01:00
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
|
|
|
LL | let _ = usize::try_from(self);
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~
|
2022-01-31 15:45:49 -05:00
|
|
|
|
2022-01-31 21:22:47 -05:00
|
|
|
error: casting `main::E10` to `u16` may truncate the value
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:291:21
|
2022-01-31 21:22:47 -05:00
|
|
|
|
|
|
|
|
LL | let _ = self as u16;
|
|
|
|
| ^^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2022-12-06 19:05:22 +01:00
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
|
|
|
LL | let _ = u16::try_from(self);
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~
|
2022-01-31 21:22:47 -05:00
|
|
|
|
2022-04-11 18:54:44 +01:00
|
|
|
error: casting `u32` to `u8` may truncate the value
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:301:13
|
2022-04-11 18:54:44 +01:00
|
|
|
|
|
|
|
|
LL | let c = (q >> 16) as u8;
|
|
|
|
| ^^^^^^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2022-12-06 19:05:22 +01:00
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
2023-03-14 09:15:23 +08:00
|
|
|
LL | let c = u8::try_from(q >> 16);
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~
|
2022-04-11 18:54:44 +01:00
|
|
|
|
|
|
|
error: casting `u32` to `u8` may truncate the value
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/cast.rs:304:13
|
2022-04-11 18:54:44 +01:00
|
|
|
|
|
|
|
|
LL | let c = (q / 1000) as u8;
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
2022-12-06 19:05:22 +01:00
|
|
|
|
|
2023-02-12 08:51:33 +01:00
|
|
|
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
|
2022-12-06 19:05:22 +01:00
|
|
|
help: ... or use `try_from` and handle the error accordingly
|
|
|
|
|
|
2023-03-14 09:15:23 +08:00
|
|
|
LL | let c = u8::try_from(q / 1000);
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~
|
2022-04-11 18:54:44 +01:00
|
|
|
|
2023-03-28 23:30:20 -04:00
|
|
|
error: aborting due to 51 previous errors
|
2018-01-16 17:06:27 +01:00
|
|
|
|