111 lines
3.2 KiB
Plaintext
111 lines
3.2 KiB
Plaintext
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:15:5
|
|
|
|
|
LL | true
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
|
= note: `-D clippy::implicit-return` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::implicit_return)]`
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:19:15
|
|
|
|
|
LL | if true { true } else { false }
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:19:29
|
|
|
|
|
LL | if true { true } else { false }
|
|
| ^^^^^ help: add `return` as shown: `return false`
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:25:17
|
|
|
|
|
LL | true => false,
|
|
| ^^^^^ help: add `return` as shown: `return false`
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:26:20
|
|
|
|
|
LL | false => { true },
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:39:9
|
|
|
|
|
LL | break true;
|
|
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:46:13
|
|
|
|
|
LL | break true;
|
|
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:54:13
|
|
|
|
|
LL | break true;
|
|
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:72:18
|
|
|
|
|
LL | let _ = || { true };
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:73:16
|
|
|
|
|
LL | let _ = || true;
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:81:5
|
|
|
|
|
LL | format!("test {}", "test")
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add `return` as shown: `return format!("test {}", "test")`
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:90:5
|
|
|
|
|
LL | m!(true, false)
|
|
| ^^^^^^^^^^^^^^^ help: add `return` as shown: `return m!(true, false)`
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:96:13
|
|
|
|
|
LL | break true;
|
|
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:101:17
|
|
|
|
|
LL | break 'outer false;
|
|
| ^^^^^^^^^^^^^^^^^^ help: change `break` to `return` as shown: `return false`
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:116:5
|
|
|
|
|
LL | / loop {
|
|
LL | | m!(true);
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
help: add `return` as shown
|
|
|
|
|
LL ~ return loop {
|
|
LL + m!(true);
|
|
LL + }
|
|
|
|
|
|
|
error: missing `return` statement
|
|
--> tests/ui/implicit_return.rs:130:5
|
|
|
|
|
LL | true
|
|
| ^^^^ help: add `return` as shown: `return true`
|
|
|
|
error: aborting due to 16 previous errors
|
|
|