227 lines
6.2 KiB
Plaintext
227 lines
6.2 KiB
Plaintext
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:27:5
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
|
= note: `-D clippy::needless-return` implied by `-D warnings`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:31:5
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:36:9
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:38:9
|
|
|
|
|
LL | return false;
|
|
| ^^^^^^^^^^^^^ help: remove `return`: `false`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:44:17
|
|
|
|
|
LL | true => return false,
|
|
| ^^^^^^^^^^^^ help: remove `return`: `false`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:46:13
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:53:9
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:55:16
|
|
|
|
|
LL | let _ = || return true;
|
|
| ^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:59:5
|
|
|
|
|
LL | return the_answer!();
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: remove `return`: `the_answer!()`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:63:5
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:68:9
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:70:9
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:77:14
|
|
|
|
|
LL | _ => return,
|
|
| ^^^^^^ help: replace `return` with a unit value: `()`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:86:13
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:88:14
|
|
|
|
|
LL | _ => return,
|
|
| ^^^^^^ help: replace `return` with a unit value: `()`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:101:9
|
|
|
|
|
LL | return String::from("test");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove `return`: `String::from("test")`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:103:9
|
|
|
|
|
LL | return String::new();
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: remove `return`: `String::new()`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:125:32
|
|
|
|
|
LL | bar.unwrap_or_else(|_| return)
|
|
| ^^^^^^ help: replace `return` with an empty block: `{}`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:130:13
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:132:20
|
|
|
|
|
LL | let _ = || return;
|
|
| ^^^^^^ help: replace `return` with an empty block: `{}`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:138:32
|
|
|
|
|
LL | res.unwrap_or_else(|_| return Foo)
|
|
| ^^^^^^^^^^ help: remove `return`: `Foo`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:147:5
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:151:5
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:156:9
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:158:9
|
|
|
|
|
LL | return false;
|
|
| ^^^^^^^^^^^^^ help: remove `return`: `false`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:164:17
|
|
|
|
|
LL | true => return false,
|
|
| ^^^^^^^^^^^^ help: remove `return`: `false`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:166:13
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:173:9
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:175:16
|
|
|
|
|
LL | let _ = || return true;
|
|
| ^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:179:5
|
|
|
|
|
LL | return the_answer!();
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: remove `return`: `the_answer!()`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:183:5
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:188:9
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:190:9
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:197:14
|
|
|
|
|
LL | _ => return,
|
|
| ^^^^^^ help: replace `return` with a unit value: `()`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:210:9
|
|
|
|
|
LL | return String::from("test");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove `return`: `String::from("test")`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:212:9
|
|
|
|
|
LL | return String::new();
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: remove `return`: `String::new()`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:228:5
|
|
|
|
|
LL | return format!("Hello {}", "world!");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove `return`: `format!("Hello {}", "world!")`
|
|
|
|
error: aborting due to 37 previous errors
|
|
|