]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/implicit_return.stderr
Improve `implicit_return`
[rust.git] / tests / ui / implicit_return.stderr
index 21822344437bcfb15553673a56e7b1fb78fe3632..632e30cbdc6e075c9b350a56762034d8e1871ad3 100644 (file)
@@ -1,4 +1,4 @@
-error: missing return statement
+error: missing `return` statement
   --> $DIR/implicit_return.rs:12:5
    |
 LL |     true
@@ -6,65 +6,98 @@ LL |     true
    |
    = note: `-D clippy::implicit-return` implied by `-D warnings`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:18:9
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:16:15
    |
-LL |         true
-   |         ^^^^ help: add `return` as shown: `return true`
+LL |     if true { true } else { false }
+   |               ^^^^ help: add `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:20:9
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:16:29
    |
-LL |         false
-   |         ^^^^^ help: add `return` as shown: `return false`
+LL |     if true { true } else { false }
+   |                             ^^^^^ help: add `return` as shown: `return false`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:28:17
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:22:17
    |
 LL |         true => false,
    |                 ^^^^^ help: add `return` as shown: `return false`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:29:20
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:23:20
    |
 LL |         false => { true },
    |                    ^^^^ help: add `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:44:9
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:36:9
    |
 LL |         break true;
    |         ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:52:13
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:43:13
    |
 LL |             break true;
    |             ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:61: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:79:18
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:69:18
    |
 LL |     let _ = || { true };
    |                  ^^^^ help: add `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:80:16
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:70:16
    |
 LL |     let _ = || true;
    |                ^^^^ help: add `return` as shown: `return true`
 
-error: missing return statement
-  --> $DIR/implicit_return.rs:88:5
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:78:5
    |
 LL |     format!("test {}", "test")
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add `return` as shown: `return format!("test {}", "test")`
 
-error: aborting due to 11 previous errors
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:87:5
+   |
+LL |     m!(true, false)
+   |     ^^^^^^^^^^^^^^^ help: add `return` as shown: `return m!(true, false)`
+
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:93:13
+   |
+LL |             break true;
+   |             ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
+
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:98:17
+   |
+LL |                 break 'outer false;
+   |                 ^^^^^^^^^^^^^^^^^^ help: change `break` to `return` as shown: `return false`
+
+error: missing `return` statement
+  --> $DIR/implicit_return.rs:113:5
+   |
+LL | /     loop {
+LL | |         m!(true);
+LL | |     }
+   | |_____^
+   |
+help: add `return` as shown
+   |
+LL |     return loop {
+LL |         m!(true);
+LL |     }
+   |
+
+error: aborting due to 15 previous errors