rust/tests/ui/implicit_return.stderr

65 lines
1.8 KiB
Plaintext
Raw Normal View History

2018-12-04 18:59:09 -06:00
error: missing return statement
--> $DIR/implicit_return.rs:8: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
error: missing return statement
--> $DIR/implicit_return.rs:14:9
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`
error: missing return statement
--> $DIR/implicit_return.rs:16:9
2018-12-04 18:59:09 -06:00
|
2018-12-27 09:57:55 -06:00
LL | false
2018-12-04 18:59:09 -06:00
| ^^^^^ help: add `return` as shown: `return false`
error: missing return statement
--> $DIR/implicit_return.rs:24: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`
error: missing return statement
--> $DIR/implicit_return.rs:25: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
error: missing return statement
2019-01-20 06:45:22 -06:00
--> $DIR/implicit_return.rs:40:9
|
2018-12-27 09:57:55 -06:00
LL | break true;
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
2018-12-04 18:59:09 -06:00
error: missing return statement
2019-01-20 06:45:22 -06:00
--> $DIR/implicit_return.rs:48: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`
error: missing return statement
2019-01-20 06:45:22 -06:00
--> $DIR/implicit_return.rs:57: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`
error: missing return statement
2019-01-20 06:45:22 -06:00
--> $DIR/implicit_return.rs:75: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
error: missing return statement
2019-01-20 06:45:22 -06:00
--> $DIR/implicit_return.rs:76: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`
2018-12-16 08:42:02 -06:00
error: aborting due to 10 previous errors
2018-12-04 18:59:09 -06:00