]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/cast_size.stderr
Addition `manual_map` test for `unsafe` blocks
[rust.git] / tests / ui / cast_size.stderr
index 1797e2e367f48ec776e23966c1cb2767403b2cd9..95552f2e285396dd05db7fb3b6993d9113ee408c 100644 (file)
-error: casting isize to i8 may truncate the value
- --> $DIR/cast_size.rs:7:5
-  |
-7 |     1isize as i8;
-  |     ^^^^^^^^^^^^
-  |
-  = 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)
- --> $DIR/cast_size.rs:8:5
-  |
-8 |     1isize as f64;
-  |     ^^^^^^^^^^^^^
-  |
-  = 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)
- --> $DIR/cast_size.rs:9:5
-  |
-9 |     1usize as f64;
-  |     ^^^^^^^^^^^^^
-
-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)
-  --> $DIR/cast_size.rs:10:5
-   |
-10 |     1isize as f32;
-   |     ^^^^^^^^^^^^^
+error: casting `isize` to `i8` may truncate the value
+  --> $DIR/cast_size.rs:12:5
+   |
+LL |     1isize as i8;
+   |     ^^^^^^^^^^^^
+   |
+   = note: `-D clippy::cast-possible-truncation` implied by `-D warnings`
 
-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)
-  --> $DIR/cast_size.rs:11:5
+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)
+  --> $DIR/cast_size.rs:15:5
    |
-11 |     1usize as f32;
-   |     ^^^^^^^^^^^^^
+LL |     x0 as f64;
+   |     ^^^^^^^^^
+   |
+   = note: `-D clippy::cast-precision-loss` implied by `-D warnings`
 
-error: casting isize to i32 may truncate the value on targets with 64-bit wide pointers
-  --> $DIR/cast_size.rs:12:5
+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)
+  --> $DIR/cast_size.rs:16:5
    |
-12 |     1isize as i32;
-   |     ^^^^^^^^^^^^^
+LL |     x1 as f64;
+   |     ^^^^^^^^^
 
-error: casting isize to u32 may lose the sign of the value
-  --> $DIR/cast_size.rs:13:5
+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)
+  --> $DIR/cast_size.rs:17:5
    |
-13 |     1isize as u32;
-   |     ^^^^^^^^^^^^^
+LL |     x0 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)
+  --> $DIR/cast_size.rs:18:5
    |
-   = note: `-D clippy::cast-sign-loss` implied by `-D warnings`
+LL |     x1 as f32;
+   |     ^^^^^^^^^
 
-error: casting isize to u32 may truncate the value on targets with 64-bit wide pointers
-  --> $DIR/cast_size.rs:13:5
+error: casting `isize` to `i32` may truncate the value on targets with 64-bit wide pointers
+  --> $DIR/cast_size.rs:19:5
    |
-13 |     1isize as u32;
+LL |     1isize as i32;
    |     ^^^^^^^^^^^^^
 
-error: casting usize to u32 may truncate the value on targets with 64-bit wide pointers
-  --> $DIR/cast_size.rs:14:5
+error: casting `isize` to `u32` may truncate the value on targets with 64-bit wide pointers
+  --> $DIR/cast_size.rs:20:5
    |
-14 |     1usize as u32;
+LL |     1isize as u32;
    |     ^^^^^^^^^^^^^
 
-error: casting usize to i32 may truncate the value on targets with 64-bit wide pointers
-  --> $DIR/cast_size.rs:15:5
+error: casting `usize` to `u32` may truncate the value on targets with 64-bit wide pointers
+  --> $DIR/cast_size.rs:21:5
    |
-15 |     1usize as i32;
+LL |     1usize as u32;
    |     ^^^^^^^^^^^^^
 
-error: casting usize to i32 may wrap around the value on targets with 32-bit wide pointers
-  --> $DIR/cast_size.rs:15:5
+error: casting `usize` to `i32` may truncate the value on targets with 64-bit wide pointers
+  --> $DIR/cast_size.rs:22:5
+   |
+LL |     1usize as i32;
+   |     ^^^^^^^^^^^^^
+
+error: casting `usize` to `i32` may wrap around the value on targets with 32-bit wide pointers
+  --> $DIR/cast_size.rs:22:5
    |
-15 |     1usize as i32;
+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
-  --> $DIR/cast_size.rs:17:5
+error: casting `i64` to `isize` may truncate the value on targets with 32-bit wide pointers
+  --> $DIR/cast_size.rs:24:5
    |
-17 |     1i64 as isize;
+LL |     1i64 as isize;
    |     ^^^^^^^^^^^^^
 
-error: casting i64 to usize may lose the sign of the value
-  --> $DIR/cast_size.rs:18:5
+error: casting `i64` to `usize` may truncate the value on targets with 32-bit wide pointers
+  --> $DIR/cast_size.rs:25:5
    |
-18 |     1i64 as usize;
+LL |     1i64 as usize;
    |     ^^^^^^^^^^^^^
 
-error: casting i64 to usize may truncate the value on targets with 32-bit wide pointers
-  --> $DIR/cast_size.rs:18:5
+error: casting `u64` to `isize` may truncate the value on targets with 32-bit wide pointers
+  --> $DIR/cast_size.rs:26:5
    |
-18 |     1i64 as usize;
+LL |     1u64 as isize;
    |     ^^^^^^^^^^^^^
 
-error: casting u64 to isize may truncate the value on targets with 32-bit wide pointers
-  --> $DIR/cast_size.rs:19:5
+error: casting `u64` to `isize` may wrap around the value on targets with 64-bit wide pointers
+  --> $DIR/cast_size.rs:26:5
    |
-19 |     1u64 as isize;
+LL |     1u64 as isize;
    |     ^^^^^^^^^^^^^
 
-error: casting u64 to isize may wrap around the value on targets with 64-bit wide pointers
-  --> $DIR/cast_size.rs:19:5
+error: casting `u64` to `usize` may truncate the value on targets with 32-bit wide pointers
+  --> $DIR/cast_size.rs:27:5
    |
-19 |     1u64 as isize;
+LL |     1u64 as usize;
    |     ^^^^^^^^^^^^^
 
-error: casting u64 to usize may truncate the value on targets with 32-bit wide pointers
-  --> $DIR/cast_size.rs:20:5
+error: casting `u32` to `isize` may wrap around the value on targets with 32-bit wide pointers
+  --> $DIR/cast_size.rs:28:5
    |
-20 |     1u64 as usize;
+LL |     1u32 as isize;
    |     ^^^^^^^^^^^^^
 
-error: casting u32 to isize may wrap around the value on targets with 32-bit wide pointers
-  --> $DIR/cast_size.rs:21:5
+error: casting `i32` to `f32` causes a loss of precision (`i32` is 32 bits wide, but `f32`'s mantissa is only 23 bits wide)
+  --> $DIR/cast_size.rs:33:5
    |
-21 |     1u32 as isize;
-   |     ^^^^^^^^^^^^^
+LL |     999_999_999 as f32;
+   |     ^^^^^^^^^^^^^^^^^^
 
-error: casting i32 to usize may lose the sign of the value
-  --> $DIR/cast_size.rs:24:5
+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)
+  --> $DIR/cast_size.rs:34:5
    |
-24 |     1i32 as usize;
-   |     ^^^^^^^^^^^^^
+LL |     9_999_999_999_999_999usize as f64;
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: aborting due to 19 previous errors
+error: aborting due to 18 previous errors