]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/needless_late_init.stderr
bless clippy tests
[rust.git] / tests / ui / needless_late_init.stderr
index f320b5b9cbb378c2b14212b751c7f811fb640909..313cdbbeba183c3222fec8dd7848e48b27bb511b 100644 (file)
@@ -164,7 +164,7 @@ help: remove the assignments from the `match` arms
    |
 LL -         1 => f = "three",
 LL +         1 => "three",
-   | 
+   |
 
 error: unneeded late initialization
   --> $DIR/needless_late_init.rs:76:5
@@ -180,7 +180,7 @@ help: remove the assignments from the branches
    |
 LL -         g = 5;
 LL +         5
-   | 
+   |
 help: add a semicolon after the `if` expression
    |
 LL |     };