209 lines
5.6 KiB
Plaintext
209 lines
5.6 KiB
Plaintext
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:24: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:28:5
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:33:9
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:35:9
|
|
|
|
|
LL | return false;
|
|
| ^^^^^^^^^^^^^ help: remove `return`: `false`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:41:17
|
|
|
|
|
LL | true => return false,
|
|
| ^^^^^^^^^^^^ help: remove `return`: `false`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:43:13
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:50:9
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:52:16
|
|
|
|
|
LL | let _ = || return true;
|
|
| ^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:60:5
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:65:9
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:67:9
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:74:14
|
|
|
|
|
LL | _ => return,
|
|
| ^^^^^^ help: replace `return` with a unit value: `()`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:83:13
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:85:14
|
|
|
|
|
LL | _ => return,
|
|
| ^^^^^^ help: replace `return` with a unit value: `()`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:100:9
|
|
|
|
|
LL | return String::from("test");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove `return`: `String::from("test")`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:102:9
|
|
|
|
|
LL | return String::new();
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: remove `return`: `String::new()`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:124:32
|
|
|
|
|
LL | bar.unwrap_or_else(|_| return)
|
|
| ^^^^^^ help: replace `return` with an empty block: `{}`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:129:13
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:131:20
|
|
|
|
|
LL | let _ = || return;
|
|
| ^^^^^^ help: replace `return` with an empty block: `{}`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:137:32
|
|
|
|
|
LL | res.unwrap_or_else(|_| return Foo)
|
|
| ^^^^^^^^^^ help: remove `return`: `Foo`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:146:5
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:150:5
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:155:9
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:157:9
|
|
|
|
|
LL | return false;
|
|
| ^^^^^^^^^^^^^ help: remove `return`: `false`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:163:17
|
|
|
|
|
LL | true => return false,
|
|
| ^^^^^^^^^^^^ help: remove `return`: `false`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:165:13
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:172:9
|
|
|
|
|
LL | return true;
|
|
| ^^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:174:16
|
|
|
|
|
LL | let _ = || return true;
|
|
| ^^^^^^^^^^^ help: remove `return`: `true`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:182:5
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:187:9
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:189:9
|
|
|
|
|
LL | return;
|
|
| ^^^^^^^ help: remove `return`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:196:14
|
|
|
|
|
LL | _ => return,
|
|
| ^^^^^^ help: replace `return` with a unit value: `()`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:211:9
|
|
|
|
|
LL | return String::from("test");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove `return`: `String::from("test")`
|
|
|
|
error: unneeded `return` statement
|
|
--> $DIR/needless_return.rs:213:9
|
|
|
|
|
LL | return String::new();
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: remove `return`: `String::new()`
|
|
|
|
error: aborting due to 34 previous errors
|
|
|