65 lines
1.8 KiB
Plaintext
65 lines
1.8 KiB
Plaintext
error: missing return statement
|
|
--> $DIR/implicit_return.rs:8:5
|
|
|
|
|
LL | true
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
|
= note: `-D clippy::implicit-return` implied by `-D warnings`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:14:9
|
|
|
|
|
LL | true
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:16:9
|
|
|
|
|
LL | false
|
|
| ^^^^^ help: add `return` as shown: `return false`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:24:17
|
|
|
|
|
LL | true => false,
|
|
| ^^^^^ help: add `return` as shown: `return false`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:25:20
|
|
|
|
|
LL | false => { true },
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:40:9
|
|
|
|
|
LL | break true;
|
|
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:48:13
|
|
|
|
|
LL | break true;
|
|
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:57:13
|
|
|
|
|
LL | break true;
|
|
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:75:18
|
|
|
|
|
LL | let _ = || { true };
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:76:16
|
|
|
|
|
LL | let _ = || true;
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
error: aborting due to 10 previous errors
|
|
|