rust/tests/ui/implicit_return.stderr

65 lines
1.8 KiB
Text
Raw Normal View History

2018-12-05 01:59:09 +01:00
error: missing return statement
2018-12-10 06:27:19 +01:00
--> $DIR/implicit_return.rs:17:5
2018-12-05 01:59:09 +01:00
|
2018-12-10 06:27:19 +01:00
17 | true
2018-12-05 01:59:09 +01:00
| ^^^^ help: add `return` as shown: `return true`
|
= note: `-D clippy::implicit-return` implied by `-D warnings`
2018-12-05 01:59:09 +01:00
error: missing return statement
2018-12-10 06:27:19 +01:00
--> $DIR/implicit_return.rs:23:9
2018-12-05 01:59:09 +01:00
|
2018-12-10 06:27:19 +01:00
23 | true
2018-12-05 01:59:09 +01:00
| ^^^^ help: add `return` as shown: `return true`
error: missing return statement
2018-12-10 06:27:19 +01:00
--> $DIR/implicit_return.rs:25:9
2018-12-05 01:59:09 +01:00
|
2018-12-10 06:27:19 +01:00
25 | false
2018-12-05 01:59:09 +01:00
| ^^^^^ help: add `return` as shown: `return false`
error: missing return statement
--> $DIR/implicit_return.rs:33:17
2018-12-05 01:59:09 +01:00
|
33 | true => false,
2018-12-05 01:59:09 +01:00
| ^^^^^ help: add `return` as shown: `return false`
error: missing return statement
--> $DIR/implicit_return.rs:34:20
2018-12-05 01:59:09 +01:00
|
34 | false => { true },
| ^^^^ help: add `return` as shown: `return true`
2018-12-05 01:59:09 +01:00
error: missing return statement
--> $DIR/implicit_return.rs:41:9
|
41 | break true;
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
2018-12-05 01:59:09 +01:00
error: missing return statement
2018-12-16 15:42:02 +01:00
--> $DIR/implicit_return.rs:49:13
2018-12-05 01:59:09 +01:00
|
2018-12-16 15:42:02 +01:00
49 | break true;
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
error: missing return statement
--> $DIR/implicit_return.rs:61:13
|
61 | break true;
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
error: missing return statement
--> $DIR/implicit_return.rs:68:18
|
68 | let _ = || { true };
| ^^^^ help: add `return` as shown: `return true`
2018-12-05 01:59:09 +01:00
error: missing return statement
2018-12-16 15:42:02 +01:00
--> $DIR/implicit_return.rs:69:16
2018-12-05 01:59:09 +01:00
|
2018-12-16 15:42:02 +01:00
69 | let _ = || true;
2018-12-05 01:59:09 +01:00
| ^^^^ help: add `return` as shown: `return true`
2018-12-16 15:42:02 +01:00
error: aborting due to 10 previous errors
2018-12-05 01:59:09 +01:00