]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/cast_lossless_float.stderr
Auto merge of #6298 - JohnTitor:fix-example, r=llogiq
[rust.git] / tests / ui / cast_lossless_float.stderr
index 781d9c897672cb849405edfd7f53bf4baafa9408..0ed09f3083c285687efcd53a7afc0fcb920903c4 100644 (file)
@@ -1,62 +1,70 @@
-error: casting i8 to f32 may become silently lossy if types change
- --> $DIR/cast_lossless_float.rs:5:5
-  |
-5 |     1i8 as f32;
-  |     ^^^^^^^^^^ help: try: `f32::from(1i8)`
-  |
-  = note: `-D cast-lossless` implied by `-D warnings`
-
-error: casting i8 to f64 may become silently lossy if types change
- --> $DIR/cast_lossless_float.rs:6:5
-  |
-6 |     1i8 as f64;
-  |     ^^^^^^^^^^ help: try: `f64::from(1i8)`
-
-error: casting u8 to f32 may become silently lossy if types change
- --> $DIR/cast_lossless_float.rs:7:5
-  |
-7 |     1u8 as f32;
-  |     ^^^^^^^^^^ help: try: `f32::from(1u8)`
-
-error: casting u8 to f64 may become silently lossy if types change
- --> $DIR/cast_lossless_float.rs:8:5
-  |
-8 |     1u8 as f64;
-  |     ^^^^^^^^^^ help: try: `f64::from(1u8)`
-
-error: casting i16 to f32 may become silently lossy if types change
- --> $DIR/cast_lossless_float.rs:9:5
-  |
-9 |     1i16 as f32;
-  |     ^^^^^^^^^^^ help: try: `f32::from(1i16)`
-
-error: casting i16 to f64 may become silently lossy if types change
-  --> $DIR/cast_lossless_float.rs:10:5
+error: casting `i8` to `f32` may become silently lossy if you later change the type
+  --> $DIR/cast_lossless_float.rs:9:5
+   |
+LL |     x0 as f32;
+   |     ^^^^^^^^^ help: try: `f32::from(x0)`
    |
-10 |     1i16 as f64;
-   |     ^^^^^^^^^^^ help: try: `f64::from(1i16)`
+   = note: `-D clippy::cast-lossless` implied by `-D warnings`
 
-error: casting u16 to f32 may become silently lossy if types change
-  --> $DIR/cast_lossless_float.rs:11:5
+error: casting `i8` to `f64` may become silently lossy if you later change the type
+  --> $DIR/cast_lossless_float.rs:10:5
    |
-11 |     1u16 as f32;
-   |     ^^^^^^^^^^^ help: try: `f32::from(1u16)`
+LL |     x0 as f64;
+   |     ^^^^^^^^^ help: try: `f64::from(x0)`
 
-error: casting u16 to f64 may become silently lossy if types change
+error: casting `u8` to `f32` may become silently lossy if you later change the type
   --> $DIR/cast_lossless_float.rs:12:5
    |
-12 |     1u16 as f64;
-   |     ^^^^^^^^^^^ help: try: `f64::from(1u16)`
+LL |     x1 as f32;
+   |     ^^^^^^^^^ help: try: `f32::from(x1)`
 
-error: casting i32 to f64 may become silently lossy if types change
+error: casting `u8` to `f64` may become silently lossy if you later change the type
   --> $DIR/cast_lossless_float.rs:13:5
    |
-13 |     1i32 as f64;
-   |     ^^^^^^^^^^^ help: try: `f64::from(1i32)`
+LL |     x1 as f64;
+   |     ^^^^^^^^^ help: try: `f64::from(x1)`
+
+error: casting `i16` to `f32` may become silently lossy if you later change the type
+  --> $DIR/cast_lossless_float.rs:15:5
+   |
+LL |     x2 as f32;
+   |     ^^^^^^^^^ help: try: `f32::from(x2)`
+
+error: casting `i16` to `f64` may become silently lossy if you later change the type
+  --> $DIR/cast_lossless_float.rs:16:5
+   |
+LL |     x2 as f64;
+   |     ^^^^^^^^^ help: try: `f64::from(x2)`
+
+error: casting `u16` to `f32` may become silently lossy if you later change the type
+  --> $DIR/cast_lossless_float.rs:18:5
+   |
+LL |     x3 as f32;
+   |     ^^^^^^^^^ help: try: `f32::from(x3)`
+
+error: casting `u16` to `f64` may become silently lossy if you later change the type
+  --> $DIR/cast_lossless_float.rs:19:5
+   |
+LL |     x3 as f64;
+   |     ^^^^^^^^^ help: try: `f64::from(x3)`
+
+error: casting `i32` to `f64` may become silently lossy if you later change the type
+  --> $DIR/cast_lossless_float.rs:21:5
+   |
+LL |     x4 as f64;
+   |     ^^^^^^^^^ help: try: `f64::from(x4)`
+
+error: casting `u32` to `f64` may become silently lossy if you later change the type
+  --> $DIR/cast_lossless_float.rs:23:5
+   |
+LL |     x5 as f64;
+   |     ^^^^^^^^^ help: try: `f64::from(x5)`
 
-error: casting u32 to f64 may become silently lossy if types change
-  --> $DIR/cast_lossless_float.rs:14:5
+error: casting `f32` to `f64` may become silently lossy if you later change the type
+  --> $DIR/cast_lossless_float.rs:26:5
    |
-14 |     1u32 as f64;
-   |     ^^^^^^^^^^^ help: try: `f64::from(1u32)`
+LL |     1.0f32 as f64;
+   |     ^^^^^^^^^^^^^ help: try: `f64::from(1.0f32)`
+
+error: aborting due to 11 previous errors