]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/let_return.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / let_return.stderr
index 459b2eafa26f8e1060fd5ac8ced57c2211c718c5..319f45c0a8a0b071ce168aac260ac0b85bc429b4 100644 (file)
@@ -1,27 +1,30 @@
-error: returning the result of a let binding from a block. Consider returning the expression directly.
-  --> $DIR/let_return.rs:10:5
+error: returning the result of a let binding from a block
+  --> $DIR/let_return.rs:7:5
    |
-10 |     x
+LL |     let x = 5;
+   |     ---------- unnecessary let binding
+LL |     x
    |     ^
    |
-   = note: `-D let-and-return` implied by `-D warnings`
-note: this expression can be directly returned
-  --> $DIR/let_return.rs:9:13
+   = note: `-D clippy::let-and-return` implied by `-D warnings`
+help: return the expression directly
+   |
+LL |     
+LL |     5
    |
-9  |     let x = 5;
-   |             ^
 
-error: returning the result of a let binding from a block. Consider returning the expression directly.
-  --> $DIR/let_return.rs:16:9
+error: returning the result of a let binding from a block
+  --> $DIR/let_return.rs:13:9
    |
-16 |         x
+LL |         let x = 5;
+   |         ---------- unnecessary let binding
+LL |         x
    |         ^
+help: return the expression directly
    |
-note: this expression can be directly returned
-  --> $DIR/let_return.rs:15:17
+LL |         
+LL |         5
    |
-15 |         let x = 5;
-   |                 ^
 
 error: aborting due to 2 previous errors