]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/error-codes/E0057.stderr
New upstream version 1.65.0+dfsg1
[rustc.git] / src / test / ui / error-codes / E0057.stderr
index 2307f52c93bceb8aa8f0fffab4c8806998ed0092..bea226f09dcb9186bba62843099c1aac454b889e 100644 (file)
@@ -12,7 +12,7 @@ LL |     let f = |x| x * 3;
 help: provide the argument
    |
 LL |     let a = f(/* value */);
-   |             ~~~~~~~~~~~~~~
+   |              ~~~~~~~~~~~~~
 
 error[E0057]: this function takes 1 argument but 2 arguments were supplied
   --> $DIR/E0057.rs:5:13
@@ -28,7 +28,7 @@ LL |     let f = |x| x * 3;
 help: remove the extra argument
    |
 LL |     let c = f(2);
-   |             ~~~~
+   |              ~~~
 
 error: aborting due to 2 previous errors