71 lines
2.0 KiB
Plaintext
71 lines
2.0 KiB
Plaintext
error: missing return statement
|
|
--> $DIR/implicit_return.rs:12: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:18:9
|
|
|
|
|
LL | true
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:20:9
|
|
|
|
|
LL | false
|
|
| ^^^^^ help: add `return` as shown: `return false`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:28:17
|
|
|
|
|
LL | true => false,
|
|
| ^^^^^ help: add `return` as shown: `return false`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:29:20
|
|
|
|
|
LL | false => { true },
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:44:9
|
|
|
|
|
LL | break true;
|
|
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:52:13
|
|
|
|
|
LL | break true;
|
|
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:61:13
|
|
|
|
|
LL | break true;
|
|
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:79:18
|
|
|
|
|
LL | let _ = || { true };
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:80:16
|
|
|
|
|
LL | let _ = || true;
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
error: missing return statement
|
|
--> $DIR/implicit_return.rs:88:5
|
|
|
|
|
LL | format!("test {}", "test")
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add `return` as shown: `return format!("test {}", "test")`
|
|
|
|
error: aborting due to 11 previous errors
|
|
|