]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/mismatched_types/numeric-literal-cast.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / mismatched_types / numeric-literal-cast.stderr
index 22a6df8902596c593583e2b0e76e352a45a30a3c..7ab5224979897232ec39e0a19094fab79bb4460d 100644 (file)
@@ -7,7 +7,7 @@ LL |     foo(1u8);
 help: change the type of the numeric literal from `u8` to `u16`
    |
 LL |     foo(1u16);
-   |         ^^^^
+   |         ~~~~
 
 error[E0308]: mismatched types
   --> $DIR/numeric-literal-cast.rs:8:10
@@ -18,7 +18,7 @@ LL |     foo1(2f32);
 help: change the type of the numeric literal from `f32` to `f64`
    |
 LL |     foo1(2f64);
-   |          ^^^^
+   |          ~~~~
 
 error[E0308]: mismatched types
   --> $DIR/numeric-literal-cast.rs:10:10
@@ -29,7 +29,7 @@ LL |     foo2(3i16);
 help: change the type of the numeric literal from `i16` to `i32`
    |
 LL |     foo2(3i32);
-   |          ^^^^
+   |          ~~~~
 
 error: aborting due to 3 previous errors