]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/implicit_return.stderr
iterate List by value
[rust.git] / tests / ui / implicit_return.stderr
index 6f4fe12757a3f9eb4c0028840b417180d0aa71b4..fb2ec9027645459c8ae221a1962e61e49df03ce9 100644 (file)
@@ -1,52 +1,70 @@
-error: missing return statement
-  --> $DIR/implicit_return.rs:21:5
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:12:5
    |
-21 |     true
+LL |     true
    |     ^^^^ help: add `return` as shown: `return true`
    |
    = note: `-D clippy::implicit-return` implied by `-D warnings`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:27:9
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:18:9
    |
-27 |         true
+LL |         true
    |         ^^^^ help: add `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:29:9
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:20:9
    |
-29 |         false
+LL |         false
    |         ^^^^^ help: add `return` as shown: `return false`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:36:17
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:27:17
    |
-36 |         true => false,
+LL |         true => false,
    |                 ^^^^^ help: add `return` as shown: `return false`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:38:13
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:28:20
    |
-38 |             true
-   |             ^^^^ help: add `return` as shown: `return true`
+LL |         false => { true },
+   |                    ^^^^ help: add `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:46:9
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:43:9
    |
-46 |         break true;
+LL |         break true;
    |         ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:52:9
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:51:13
    |
-52 |         true
-   |         ^^^^ help: add `return` as shown: `return true`
+LL |             break true;
+   |             ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
+
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:60:13
+   |
+LL |             break true;
+   |             ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:54:16
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:78:18
    |
-54 |     let _ = || true;
+LL |     let _ = || { true };
+   |                  ^^^^ help: add `return` as shown: `return true`
+
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:79:16
+   |
+LL |     let _ = || true;
    |                ^^^^ help: add `return` as shown: `return true`
 
-error: aborting due to 8 previous errors
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:87:5
+   |
+LL |     format!("test {}", "test")
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add `return` as shown: `return format!("test {}", "test")`
+
+error: aborting due to 11 previous errors