2020-01-06 00:36:33 -06:00
error: casting `isize` to `i8` may truncate the value
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:15:5
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | 1isize as i8;
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^^^
|
2023-02-12 01:51:33 -06:00
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
2018-10-06 11:18:06 -05:00
= note: `-D clippy::cast-possible-truncation` implied by `-D warnings`
2023-09-07 15:31:30 -05:00
= help: to override `-D warnings` add `#[allow(clippy::cast_possible_truncation)]`
2022-12-06 12:05:22 -06:00
help: ... or use `try_from` and handle the error accordingly
|
LL | i8::try_from(1isize);
| ~~~~~~~~~~~~~~~~~~~~
2018-01-05 17:23:28 -06:00
2020-01-07 15:08:49 -06:00
error: casting `isize` to `f64` causes a loss of precision on targets with 64-bit wide pointers (`isize` is 64 bits wide, but `f64`'s mantissa is only 52 bits wide)
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:18:5
2018-10-06 11:18:06 -05:00
|
2019-03-12 02:49:26 -05:00
LL | x0 as f64;
| ^^^^^^^^^
2018-10-06 11:18:06 -05:00
|
= note: `-D clippy::cast-precision-loss` implied by `-D warnings`
2023-09-07 15:31:30 -05:00
= help: to override `-D warnings` add `#[allow(clippy::cast_precision_loss)]`
2018-01-05 17:23:28 -06:00
2020-01-07 15:08:49 -06:00
error: casting `usize` to `f64` causes a loss of precision on targets with 64-bit wide pointers (`usize` is 64 bits wide, but `f64`'s mantissa is only 52 bits wide)
2023-07-28 14:35:48 -05:00
--> $DIR/cast_size.rs:19:5
2018-10-06 11:18:06 -05:00
|
2019-03-12 02:49:26 -05:00
LL | x1 as f64;
| ^^^^^^^^^
2018-01-05 17:23:28 -06:00
2020-01-07 15:08:49 -06:00
error: casting `isize` to `f32` causes a loss of precision (`isize` is 32 or 64 bits wide, but `f32`'s mantissa is only 23 bits wide)
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:20:5
2018-08-01 09:30:44 -05:00
|
2019-03-12 02:49:26 -05:00
LL | x0 as f32;
| ^^^^^^^^^
2018-01-05 17:23:28 -06:00
2020-01-07 15:08:49 -06:00
error: casting `usize` to `f32` causes a loss of precision (`usize` is 32 or 64 bits wide, but `f32`'s mantissa is only 23 bits wide)
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:21:5
2018-08-01 09:30:44 -05:00
|
2019-03-12 02:49:26 -05:00
LL | x1 as f32;
| ^^^^^^^^^
2018-01-05 17:23:28 -06:00
2020-01-06 00:36:33 -06:00
error: casting `isize` to `i32` may truncate the value on targets with 64-bit wide pointers
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:22:5
2018-01-05 17:23:28 -06:00
|
2018-12-27 09:57:55 -06:00
LL | 1isize as i32;
2018-01-05 17:23:28 -06:00
| ^^^^^^^^^^^^^
2022-12-06 12:05:22 -06:00
|
2023-02-12 01:51:33 -06:00
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
2022-12-06 12:05:22 -06:00
help: ... or use `try_from` and handle the error accordingly
|
LL | i32::try_from(1isize);
| ~~~~~~~~~~~~~~~~~~~~~
2018-01-05 17:23:28 -06:00
2020-01-06 00:36:33 -06:00
error: casting `isize` to `u32` may truncate the value on targets with 64-bit wide pointers
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:23:5
2018-01-05 17:23:28 -06:00
|
2018-12-27 09:57:55 -06:00
LL | 1isize as u32;
2018-01-05 17:23:28 -06:00
| ^^^^^^^^^^^^^
2022-12-06 12:05:22 -06:00
|
2023-02-12 01:51:33 -06:00
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
2022-12-06 12:05:22 -06:00
help: ... or use `try_from` and handle the error accordingly
|
LL | u32::try_from(1isize);
| ~~~~~~~~~~~~~~~~~~~~~
2018-01-05 17:23:28 -06:00
2020-01-06 00:36:33 -06:00
error: casting `usize` to `u32` may truncate the value on targets with 64-bit wide pointers
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:24:5
2018-01-05 17:23:28 -06:00
|
2018-12-27 09:57:55 -06:00
LL | 1usize as u32;
2018-01-05 17:23:28 -06:00
| ^^^^^^^^^^^^^
2022-12-06 12:05:22 -06:00
|
2023-02-12 01:51:33 -06:00
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
2022-12-06 12:05:22 -06:00
help: ... or use `try_from` and handle the error accordingly
|
LL | u32::try_from(1usize);
| ~~~~~~~~~~~~~~~~~~~~~
2018-01-05 17:23:28 -06:00
2020-01-06 00:36:33 -06:00
error: casting `usize` to `i32` may truncate the value on targets with 64-bit wide pointers
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:25:5
2018-01-05 17:23:28 -06:00
|
2018-12-27 09:57:55 -06:00
LL | 1usize as i32;
2018-01-05 17:23:28 -06:00
| ^^^^^^^^^^^^^
2022-12-06 12:05:22 -06:00
|
2023-02-12 01:51:33 -06:00
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
2022-12-06 12:05:22 -06:00
help: ... or use `try_from` and handle the error accordingly
|
LL | i32::try_from(1usize);
| ~~~~~~~~~~~~~~~~~~~~~
2018-01-05 17:23:28 -06:00
2020-01-06 00:36:33 -06:00
error: casting `usize` to `i32` may wrap around the value on targets with 32-bit wide pointers
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:25:5
2018-01-05 17:23:28 -06:00
|
2018-12-27 09:57:55 -06:00
LL | 1usize as i32;
2018-01-05 17:23:28 -06:00
| ^^^^^^^^^^^^^
|
2018-08-01 09:30:44 -05:00
= note: `-D clippy::cast-possible-wrap` implied by `-D warnings`
2023-09-07 15:31:30 -05:00
= help: to override `-D warnings` add `#[allow(clippy::cast_possible_wrap)]`
2018-01-05 17:23:28 -06:00
2020-01-06 00:36:33 -06:00
error: casting `i64` to `isize` may truncate the value on targets with 32-bit wide pointers
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:26:5
2018-01-05 17:23:28 -06:00
|
2018-12-27 09:57:55 -06:00
LL | 1i64 as isize;
2018-01-05 17:23:28 -06:00
| ^^^^^^^^^^^^^
2022-12-06 12:05:22 -06:00
|
2023-02-12 01:51:33 -06:00
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
2022-12-06 12:05:22 -06:00
help: ... or use `try_from` and handle the error accordingly
|
LL | isize::try_from(1i64);
| ~~~~~~~~~~~~~~~~~~~~~
2018-01-05 17:23:28 -06:00
2020-01-06 00:36:33 -06:00
error: casting `i64` to `usize` may truncate the value on targets with 32-bit wide pointers
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:27:5
2018-01-05 17:23:28 -06:00
|
2018-12-27 09:57:55 -06:00
LL | 1i64 as usize;
2018-01-05 17:23:28 -06:00
| ^^^^^^^^^^^^^
2022-12-06 12:05:22 -06:00
|
2023-02-12 01:51:33 -06:00
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
2022-12-06 12:05:22 -06:00
help: ... or use `try_from` and handle the error accordingly
|
LL | usize::try_from(1i64);
| ~~~~~~~~~~~~~~~~~~~~~
2018-01-05 17:23:28 -06:00
2020-01-06 00:36:33 -06:00
error: casting `u64` to `isize` may truncate the value on targets with 32-bit wide pointers
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:28:5
2018-01-05 17:23:28 -06:00
|
2018-12-27 09:57:55 -06:00
LL | 1u64 as isize;
2018-01-05 17:23:28 -06:00
| ^^^^^^^^^^^^^
2022-12-06 12:05:22 -06:00
|
2023-02-12 01:51:33 -06:00
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
2022-12-06 12:05:22 -06:00
help: ... or use `try_from` and handle the error accordingly
|
LL | isize::try_from(1u64);
| ~~~~~~~~~~~~~~~~~~~~~
2018-01-05 17:23:28 -06:00
2020-01-06 00:36:33 -06:00
error: casting `u64` to `isize` may wrap around the value on targets with 64-bit wide pointers
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:28:5
2018-01-05 17:23:28 -06:00
|
2018-12-27 09:57:55 -06:00
LL | 1u64 as isize;
2018-01-05 17:23:28 -06:00
| ^^^^^^^^^^^^^
2020-01-06 00:36:33 -06:00
error: casting `u64` to `usize` may truncate the value on targets with 32-bit wide pointers
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:29:5
2018-01-05 17:23:28 -06:00
|
2018-12-27 09:57:55 -06:00
LL | 1u64 as usize;
2018-01-05 17:23:28 -06:00
| ^^^^^^^^^^^^^
2022-12-06 12:05:22 -06:00
|
2023-02-12 01:51:33 -06:00
= help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
2022-12-06 12:05:22 -06:00
help: ... or use `try_from` and handle the error accordingly
|
LL | usize::try_from(1u64);
| ~~~~~~~~~~~~~~~~~~~~~
2018-01-05 17:23:28 -06:00
2020-01-06 00:36:33 -06:00
error: casting `u32` to `isize` may wrap around the value on targets with 32-bit wide pointers
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:30:5
2018-01-05 17:23:28 -06:00
|
2018-12-27 09:57:55 -06:00
LL | 1u32 as isize;
2018-01-05 17:23:28 -06:00
| ^^^^^^^^^^^^^
2020-01-07 15:08:49 -06: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-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:35:5
2019-03-12 02:49:26 -05:00
|
LL | 999_999_999 as f32;
| ^^^^^^^^^^^^^^^^^^
2020-01-07 15:08:49 -06:00
error: casting `usize` to `f64` causes a loss of precision on targets with 64-bit wide pointers (`usize` is 64 bits wide, but `f64`'s mantissa is only 52 bits wide)
2023-09-06 09:58:44 -05:00
--> $DIR/cast_size.rs:36:5
2019-03-12 02:49:26 -05:00
|
LL | 9_999_999_999_999_999usize as f64;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2023-09-06 09:58:44 -05:00
error: literal out of range for `usize`
--> $DIR/cast_size.rs:36:5
|
LL | 9_999_999_999_999_999usize as f64;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: the literal `9_999_999_999_999_999usize` does not fit into the type `usize` whose range is `0..=4294967295`
= note: `#[deny(overflowing_literals)]` on by default
error: aborting due to 19 previous errors
2018-01-16 10:06:27 -06:00