rust/tests/ui/implicit_return.stderr

110 lines
3.0 KiB
Plaintext
Raw Normal View History

2020-01-06 00:36:33 -06:00
error: missing `return` statement
--> $DIR/implicit_return.rs:12: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`
|
= note: `-D clippy::implicit-return` implied by `-D warnings`
2018-12-04 18:59:09 -06:00
2020-01-06 00:36:33 -06:00
error: missing `return` statement
--> $DIR/implicit_return.rs:16:15
2018-12-04 18:59:09 -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
--> $DIR/implicit_return.rs:16:29
2018-12-04 18:59:09 -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
--> $DIR/implicit_return.rs:22: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
--> $DIR/implicit_return.rs:23:20
2018-12-04 18:59:09 -06:00
|
2018-12-27 09:57:55 -06:00
LL | false => { true },
| ^^^^ 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
--> $DIR/implicit_return.rs:36:9
|
2018-12-27 09:57:55 -06:00
LL | break true;
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
2020-01-06 00:36:33 -06:00
error: missing `return` statement
--> $DIR/implicit_return.rs:43: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
--> $DIR/implicit_return.rs:51: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
--> $DIR/implicit_return.rs:69:18
2018-12-16 08:42:02 -06:00
|
2018-12-27 09:57:55 -06:00
LL | let _ = || { true };
| ^^^^ 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
--> $DIR/implicit_return.rs:70: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
--> $DIR/implicit_return.rs:78:5
|
LL | format!("test {}", "test")
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add `return` as shown: `return format!("test {}", "test")`
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
|
2021-08-11 09:21:33 -05:00
LL ~ return loop {
LL + m!(true);
LL + }
|
error: missing `return` statement
--> $DIR/implicit_return.rs:127:5
|
LL | true
| ^^^^ help: add `return` as shown: `return true`
error: aborting due to 16 previous errors
2018-12-04 18:59:09 -06:00