]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/implicit_return.stderr
iterate List by value
[rust.git] / tests / ui / implicit_return.stderr
index 41b0873317e8af730370982c157e6abdb1a5e3d9..fb2ec9027645459c8ae221a1962e61e49df03ce9 100644 (file)
@@ -1,67 +1,67 @@
-error: missing return statement
-  --> $DIR/implicit_return.rs:9:5
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:12:5
    |
 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:15:9
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:18:9
    |
 LL |         true
    |         ^^^^ help: add `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:17:9
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:20:9
    |
 LL |         false
    |         ^^^^^ help: add `return` as shown: `return false`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:25:17
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:27:17
    |
 LL |         true => false,
    |                 ^^^^^ help: add `return` as shown: `return false`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:26:20
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:28:20
    |
 LL |         false => { true },
    |                    ^^^^ help: add `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:41:9
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:43:9
    |
 LL |         break true;
    |         ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:49:13
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:51:13
    |
 LL |             break true;
    |             ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:58:13
+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:76:18
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:78:18
    |
 LL |     let _ = || { true };
    |                  ^^^^ help: add `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:77:16
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:79:16
    |
 LL |     let _ = || true;
    |                ^^^^ help: add `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:85:5
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:87:5
    |
 LL |     format!("test {}", "test")
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add `return` as shown: `return format!("test {}", "test")`