]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/cast_lossless_integer.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / cast_lossless_integer.stderr
index fdd915979e4866af4fc5744245f28e23d14d66d5..c2f937942a3dea64e4dd2ed98cbf0f39a99dbe91 100644 (file)
-error: casting i8 to i16 may become silently lossy if types change
- --> $DIR/cast_lossless_integer.rs:6:5
-  |
-6 |     1i8 as i16;
-  |     ^^^^^^^^^^ help: try: `i16::from(1i8)`
-  |
-  = note: `-D cast-lossless` implied by `-D warnings`
-
-error: casting i8 to i32 may become silently lossy if types change
- --> $DIR/cast_lossless_integer.rs:7:5
-  |
-7 |     1i8 as i32;
-  |     ^^^^^^^^^^ help: try: `i32::from(1i8)`
-
-error: casting i8 to i64 may become silently lossy if types change
- --> $DIR/cast_lossless_integer.rs:8:5
-  |
-8 |     1i8 as i64;
-  |     ^^^^^^^^^^ help: try: `i64::from(1i8)`
-
-error: casting u8 to i16 may become silently lossy if types change
- --> $DIR/cast_lossless_integer.rs:9:5
-  |
-9 |     1u8 as i16;
-  |     ^^^^^^^^^^ help: try: `i16::from(1u8)`
-
-error: casting u8 to i32 may become silently lossy if types change
+error: casting i8 to i16 may become silently lossy if you later change the type
+  --> $DIR/cast_lossless_integer.rs:8:5
+   |
+LL |     1i8 as i16;
+   |     ^^^^^^^^^^ help: try: `i16::from(1i8)`
+   |
+   = note: `-D clippy::cast-lossless` implied by `-D warnings`
+
+error: casting i8 to i32 may become silently lossy if you later change the type
+  --> $DIR/cast_lossless_integer.rs:9:5
+   |
+LL |     1i8 as i32;
+   |     ^^^^^^^^^^ help: try: `i32::from(1i8)`
+
+error: casting i8 to i64 may become silently lossy if you later change the type
   --> $DIR/cast_lossless_integer.rs:10:5
    |
-10 |     1u8 as i32;
-   |     ^^^^^^^^^^ help: try: `i32::from(1u8)`
+LL |     1i8 as i64;
+   |     ^^^^^^^^^^ help: try: `i64::from(1i8)`
 
-error: casting u8 to i64 may become silently lossy if types change
+error: casting u8 to i16 may become silently lossy if you later change the type
   --> $DIR/cast_lossless_integer.rs:11:5
    |
-11 |     1u8 as i64;
-   |     ^^^^^^^^^^ help: try: `i64::from(1u8)`
+LL |     1u8 as i16;
+   |     ^^^^^^^^^^ help: try: `i16::from(1u8)`
 
-error: casting u8 to u16 may become silently lossy if types change
+error: casting u8 to i32 may become silently lossy if you later change the type
   --> $DIR/cast_lossless_integer.rs:12:5
    |
-12 |     1u8 as u16;
-   |     ^^^^^^^^^^ help: try: `u16::from(1u8)`
+LL |     1u8 as i32;
+   |     ^^^^^^^^^^ help: try: `i32::from(1u8)`
 
-error: casting u8 to u32 may become silently lossy if types change
+error: casting u8 to i64 may become silently lossy if you later change the type
   --> $DIR/cast_lossless_integer.rs:13:5
    |
-13 |     1u8 as u32;
-   |     ^^^^^^^^^^ help: try: `u32::from(1u8)`
+LL |     1u8 as i64;
+   |     ^^^^^^^^^^ help: try: `i64::from(1u8)`
 
-error: casting u8 to u64 may become silently lossy if types change
+error: casting u8 to u16 may become silently lossy if you later change the type
   --> $DIR/cast_lossless_integer.rs:14:5
    |
-14 |     1u8 as u64;
-   |     ^^^^^^^^^^ help: try: `u64::from(1u8)`
+LL |     1u8 as u16;
+   |     ^^^^^^^^^^ help: try: `u16::from(1u8)`
 
-error: casting i16 to i32 may become silently lossy if types change
+error: casting u8 to u32 may become silently lossy if you later change the type
   --> $DIR/cast_lossless_integer.rs:15:5
    |
-15 |     1i16 as i32;
-   |     ^^^^^^^^^^^ help: try: `i32::from(1i16)`
+LL |     1u8 as u32;
+   |     ^^^^^^^^^^ help: try: `u32::from(1u8)`
 
-error: casting i16 to i64 may become silently lossy if types change
+error: casting u8 to u64 may become silently lossy if you later change the type
   --> $DIR/cast_lossless_integer.rs:16:5
    |
-16 |     1i16 as i64;
-   |     ^^^^^^^^^^^ help: try: `i64::from(1i16)`
+LL |     1u8 as u64;
+   |     ^^^^^^^^^^ help: try: `u64::from(1u8)`
 
-error: casting u16 to i32 may become silently lossy if types change
+error: casting i16 to i32 may become silently lossy if you later change the type
   --> $DIR/cast_lossless_integer.rs:17:5
    |
-17 |     1u16 as i32;
-   |     ^^^^^^^^^^^ help: try: `i32::from(1u16)`
+LL |     1i16 as i32;
+   |     ^^^^^^^^^^^ help: try: `i32::from(1i16)`
 
-error: casting u16 to i64 may become silently lossy if types change
+error: casting i16 to i64 may become silently lossy if you later change the type
   --> $DIR/cast_lossless_integer.rs:18:5
    |
-18 |     1u16 as i64;
-   |     ^^^^^^^^^^^ help: try: `i64::from(1u16)`
+LL |     1i16 as i64;
+   |     ^^^^^^^^^^^ help: try: `i64::from(1i16)`
 
-error: casting u16 to u32 may become silently lossy if types change
+error: casting u16 to i32 may become silently lossy if you later change the type
   --> $DIR/cast_lossless_integer.rs:19:5
    |
-19 |     1u16 as u32;
-   |     ^^^^^^^^^^^ help: try: `u32::from(1u16)`
+LL |     1u16 as i32;
+   |     ^^^^^^^^^^^ help: try: `i32::from(1u16)`
 
-error: casting u16 to u64 may become silently lossy if types change
+error: casting u16 to i64 may become silently lossy if you later change the type
   --> $DIR/cast_lossless_integer.rs:20:5
    |
-20 |     1u16 as u64;
-   |     ^^^^^^^^^^^ help: try: `u64::from(1u16)`
+LL |     1u16 as i64;
+   |     ^^^^^^^^^^^ help: try: `i64::from(1u16)`
 
-error: casting i32 to i64 may become silently lossy if types change
+error: casting u16 to u32 may become silently lossy if you later change the type
   --> $DIR/cast_lossless_integer.rs:21:5
    |
-21 |     1i32 as i64;
-   |     ^^^^^^^^^^^ help: try: `i64::from(1i32)`
+LL |     1u16 as u32;
+   |     ^^^^^^^^^^^ help: try: `u32::from(1u16)`
 
-error: casting u32 to i64 may become silently lossy if types change
+error: casting u16 to u64 may become silently lossy if you later change the type
   --> $DIR/cast_lossless_integer.rs:22:5
    |
-22 |     1u32 as i64;
-   |     ^^^^^^^^^^^ help: try: `i64::from(1u32)`
+LL |     1u16 as u64;
+   |     ^^^^^^^^^^^ help: try: `u64::from(1u16)`
 
-error: casting u32 to u64 may become silently lossy if types change
+error: casting i32 to i64 may become silently lossy if you later change the type
   --> $DIR/cast_lossless_integer.rs:23:5
    |
-23 |     1u32 as u64;
+LL |     1i32 as i64;
+   |     ^^^^^^^^^^^ help: try: `i64::from(1i32)`
+
+error: casting u32 to i64 may become silently lossy if you later change the type
+  --> $DIR/cast_lossless_integer.rs:24:5
+   |
+LL |     1u32 as i64;
+   |     ^^^^^^^^^^^ help: try: `i64::from(1u32)`
+
+error: casting u32 to u64 may become silently lossy if you later change the type
+  --> $DIR/cast_lossless_integer.rs:25:5
+   |
+LL |     1u32 as u64;
    |     ^^^^^^^^^^^ help: try: `u64::from(1u32)`
 
+error: casting u8 to u16 may become silently lossy if you later change the type
+  --> $DIR/cast_lossless_integer.rs:28:5
+   |
+LL |     (1u8 + 1u8) as u16;
+   |     ^^^^^^^^^^^^^^^^^^ help: try: `u16::from(1u8 + 1u8)`
+
+error: aborting due to 19 previous errors
+