2020-01-06 00:36:33 -06:00
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:11:5
|
2018-12-04 18:59:09 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | true
|
2018-12-04 18:59:09 -06:00
|
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
|
|
2018-12-05 07:39:09 -06:00
|
|
|
= note: `-D clippy::implicit-return` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::implicit_return)]`
|
2018-12-04 18:59:09 -06:00
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:15:15
|
2018-12-04 18:59:09 -06:00
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
LL | if true { true } else { false }
|
|
|
|
| ^^^^ help: add `return` as shown: `return true`
|
2018-12-04 18:59:09 -06:00
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:15:29
|
2018-12-04 18:59:09 -06:00
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
LL | if true { true } else { false }
|
|
|
|
| ^^^^^ help: add `return` as shown: `return false`
|
2018-12-04 18:59:09 -06:00
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:21:17
|
2018-12-04 18:59:09 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | true => false,
|
2018-12-04 18:59:09 -06:00
|
|
|
| ^^^^^ help: add `return` as shown: `return false`
|
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:22:20
|
2018-12-04 18:59:09 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | false => { true },
|
2018-12-10 17:59:59 -06:00
|
|
|
| ^^^^ help: add `return` as shown: `return true`
|
2018-12-04 18:59:09 -06:00
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:35:9
|
2018-12-06 05:22:54 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | break true;
|
2018-12-06 05:22:54 -06:00
|
|
|
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
|
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:42:13
|
2018-12-04 18:59:09 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | break true;
|
2018-12-16 08:42:02 -06:00
|
|
|
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
|
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:50:13
|
2018-12-16 08:42:02 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | break true;
|
2018-12-16 08:42:02 -06:00
|
|
|
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
|
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:68:18
|
2018-12-16 08:42:02 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let _ = || { true };
|
2018-12-10 17:59:59 -06:00
|
|
|
| ^^^^ help: add `return` as shown: `return true`
|
2018-12-04 18:59:09 -06:00
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:69:16
|
2018-12-04 18:59:09 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let _ = || true;
|
2018-12-04 18:59:09 -06:00
|
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:77:5
|
2019-07-15 09:02:50 -05:00
|
|
|
|
|
|
|
|
LL | format!("test {}", "test")
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add `return` as shown: `return format!("test {}", "test")`
|
|
|
|
|
2021-05-06 04:51:22 -05:00
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:86:5
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
LL | m!(true, false)
|
|
|
|
| ^^^^^^^^^^^^^^^ help: add `return` as shown: `return m!(true, false)`
|
|
|
|
|
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:92:13
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
LL | break true;
|
|
|
|
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
|
|
|
|
|
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:97:17
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
LL | break 'outer false;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: change `break` to `return` as shown: `return false`
|
|
|
|
|
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:112:5
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
LL | / loop {
|
|
|
|
LL | | m!(true);
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: add `return` as shown
|
|
|
|
|
|
2021-08-11 09:21:33 -05:00
|
|
|
LL ~ return loop {
|
|
|
|
LL + m!(true);
|
|
|
|
LL + }
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
error: missing `return` statement
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/implicit_return.rs:126:5
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
LL | true
|
|
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
|
|
|
|
error: aborting due to 16 previous errors
|
2018-12-04 18:59:09 -06:00
|
|
|
|