]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/issues/issue-8761.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / issues / issue-8761.stderr
index 836520a28ef349cbfa04f6721ec522ba38ed5504..4c67dbf6796b305cdfe41b5d3342482f903aa4ae 100644 (file)
@@ -7,7 +7,7 @@ LL |     A = 1i64,
 help: change the type of the numeric literal from `i64` to `isize`
    |
 LL |     A = 1isize,
-   |         ^^^^^^
+   |         ~~~~~~
 
 error[E0308]: mismatched types
   --> $DIR/issue-8761.rs:5:9
@@ -18,7 +18,7 @@ LL |     B = 2u8
 help: change the type of the numeric literal from `u8` to `isize`
    |
 LL |     B = 2isize
-   |         ^^^^^^
+   |         ~~~~~~
 
 error: aborting due to 2 previous errors