rust/tests/ui/cast_size.stderr

125 lines
3.6 KiB
Text
Raw Normal View History

error: casting isize to i8 may truncate the value
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:20:5
2018-10-06 18:18:06 +02:00
|
2018-12-27 16:57:55 +01:00
LL | 1isize as i8;
2018-10-06 18:18:06 +02:00
| ^^^^^^^^^^^^
|
= note: `-D clippy::cast-possible-truncation` implied by `-D warnings`
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)
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:21:5
2018-10-06 18:18:06 +02:00
|
2018-12-27 16:57:55 +01:00
LL | 1isize as f64;
2018-10-06 18:18:06 +02:00
| ^^^^^^^^^^^^^
|
= note: `-D clippy::cast-precision-loss` implied by `-D warnings`
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)
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:22:5
2018-10-06 18:18:06 +02:00
|
2018-12-27 16:57:55 +01:00
LL | 1usize as f64;
2018-10-06 18:18:06 +02: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)
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:23:5
|
2018-12-27 16:57:55 +01:00
LL | 1isize as f32;
| ^^^^^^^^^^^^^
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)
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:24:5
|
2018-12-27 16:57:55 +01:00
LL | 1usize as f32;
| ^^^^^^^^^^^^^
error: casting isize to i32 may truncate the value on targets with 64-bit wide pointers
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:25:5
|
2018-12-27 16:57:55 +01:00
LL | 1isize as i32;
| ^^^^^^^^^^^^^
error: casting isize to u32 may lose the sign of the value
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:26:5
|
2018-12-27 16:57:55 +01:00
LL | 1isize as u32;
| ^^^^^^^^^^^^^
|
= note: `-D clippy::cast-sign-loss` implied by `-D warnings`
error: casting isize to u32 may truncate the value on targets with 64-bit wide pointers
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:26:5
|
2018-12-27 16:57:55 +01:00
LL | 1isize as u32;
| ^^^^^^^^^^^^^
error: casting usize to u32 may truncate the value on targets with 64-bit wide pointers
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:27:5
|
2018-12-27 16:57:55 +01:00
LL | 1usize as u32;
| ^^^^^^^^^^^^^
error: casting usize to i32 may truncate the value on targets with 64-bit wide pointers
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:28:5
|
2018-12-27 16:57:55 +01:00
LL | 1usize as i32;
| ^^^^^^^^^^^^^
error: casting usize to i32 may wrap around the value on targets with 32-bit wide pointers
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:28:5
|
2018-12-27 16:57:55 +01:00
LL | 1usize as i32;
| ^^^^^^^^^^^^^
|
= note: `-D clippy::cast-possible-wrap` implied by `-D warnings`
error: casting i64 to isize may truncate the value on targets with 32-bit wide pointers
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:30:5
|
2018-12-27 16:57:55 +01:00
LL | 1i64 as isize;
| ^^^^^^^^^^^^^
error: casting i64 to usize may lose the sign of the value
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:31:5
|
2018-12-27 16:57:55 +01:00
LL | 1i64 as usize;
| ^^^^^^^^^^^^^
error: casting i64 to usize may truncate the value on targets with 32-bit wide pointers
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:31:5
|
2018-12-27 16:57:55 +01:00
LL | 1i64 as usize;
| ^^^^^^^^^^^^^
error: casting u64 to isize may truncate the value on targets with 32-bit wide pointers
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:32:5
|
2018-12-27 16:57:55 +01:00
LL | 1u64 as isize;
| ^^^^^^^^^^^^^
error: casting u64 to isize may wrap around the value on targets with 64-bit wide pointers
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:32:5
|
2018-12-27 16:57:55 +01:00
LL | 1u64 as isize;
| ^^^^^^^^^^^^^
error: casting u64 to usize may truncate the value on targets with 32-bit wide pointers
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:33:5
|
2018-12-27 16:57:55 +01:00
LL | 1u64 as usize;
| ^^^^^^^^^^^^^
error: casting u32 to isize may wrap around the value on targets with 32-bit wide pointers
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:34:5
|
2018-12-27 16:57:55 +01:00
LL | 1u32 as isize;
| ^^^^^^^^^^^^^
error: casting i32 to usize may lose the sign of the value
2018-12-10 06:27:19 +01:00
--> $DIR/cast_size.rs:37:5
|
2018-12-27 16:57:55 +01:00
LL | 1i32 as usize;
| ^^^^^^^^^^^^^
2018-01-16 17:06:27 +01:00
error: aborting due to 19 previous errors