]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/parser/increment-autofix.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / parser / increment-autofix.stderr
index 593592ba4ab742f96f7ee3b205d0133c8e49934e..1dc69fd9f465946d77f34bfc2f3f9bbdb38cda48 100644 (file)
@@ -8,7 +8,7 @@ help: use `+= 1` instead
    |
 LL -     ++i;
 LL +     i += 1;
-   | 
+   |
 
 error: Rust has no prefix increment operator
   --> $DIR/increment-autofix.rs:11:11
@@ -33,7 +33,7 @@ help: use `+= 1` instead
    |
 LL -     ++tmp;
 LL +     tmp += 1;
-   | 
+   |
 
 error: Rust has no prefix increment operator
   --> $DIR/increment-autofix.rs:25:11