]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/meta/meta-expected-error-wrong-rev.a.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / meta / meta-expected-error-wrong-rev.a.stderr
index 583b2c4cfe039f77f8dba570468c5470ab402bc6..7985357d0aed6507c01eb0f5bdf1c9188b99e2ca 100644 (file)
@@ -1,5 +1,5 @@
 error[E0308]: mismatched types
-  --> $DIR/meta-expected-error-wrong-rev.rs:13:18
+  --> $DIR/meta-expected-error-wrong-rev.rs:14:18
    |
 LL |     let x: u32 = 22_usize;
    |            ---   ^^^^^^^^ expected `u32`, found `usize`
@@ -9,7 +9,7 @@ LL |     let x: u32 = 22_usize;
 help: change the type of the numeric literal from `usize` to `u32`
    |
 LL |     let x: u32 = 22_u32;
-   |                  ^^^^^^
+   |                  ~~~~~~
 
 error: aborting due to previous error