mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
63 lines
2.2 KiB
Text
63 lines
2.2 KiB
Text
error: parameter is only used in recursion
|
|
--> $DIR/only_used_in_recursion2.rs:3:35
|
|
|
|
|
LL | fn _with_inner(flag: u32, a: u32, b: u32) -> usize {
|
|
| ^ help: if this is intentional, prefix it with an underscore: `_b`
|
|
|
|
|
= note: `-D clippy::only-used-in-recursion` implied by `-D warnings`
|
|
note: parameter used here
|
|
--> $DIR/only_used_in_recursion2.rs:9:52
|
|
|
|
|
LL | if flag == 0 { 0 } else { _with_inner(flag, a, b + x) }
|
|
| ^
|
|
|
|
error: parameter is only used in recursion
|
|
--> $DIR/only_used_in_recursion2.rs:4:25
|
|
|
|
|
LL | fn inner(flag: u32, a: u32) -> u32 {
|
|
| ^ help: if this is intentional, prefix it with an underscore: `_a`
|
|
|
|
|
note: parameter used here
|
|
--> $DIR/only_used_in_recursion2.rs:5:47
|
|
|
|
|
LL | if flag == 0 { 0 } else { inner(flag, a) }
|
|
| ^
|
|
|
|
error: parameter is only used in recursion
|
|
--> $DIR/only_used_in_recursion2.rs:12:34
|
|
|
|
|
LL | fn _with_closure(a: Option<u32>, b: u32, f: impl Fn(u32, u32) -> Option<u32>) -> u32 {
|
|
| ^ help: if this is intentional, prefix it with an underscore: `_b`
|
|
|
|
|
note: parameter used here
|
|
--> $DIR/only_used_in_recursion2.rs:14:32
|
|
|
|
|
LL | _with_closure(Some(x), b, f)
|
|
| ^
|
|
|
|
error: parameter is only used in recursion
|
|
--> $DIR/only_used_in_recursion2.rs:62:37
|
|
|
|
|
LL | fn overwritten_param(flag: u32, mut a: usize) -> usize {
|
|
| ^ help: if this is intentional, prefix it with an underscore: `_a`
|
|
|
|
|
note: parameter used here
|
|
--> $DIR/only_used_in_recursion2.rs:70:29
|
|
|
|
|
LL | overwritten_param(flag, a)
|
|
| ^
|
|
|
|
error: parameter is only used in recursion
|
|
--> $DIR/only_used_in_recursion2.rs:73:32
|
|
|
|
|
LL | fn field_direct(flag: u32, mut a: (usize,)) -> usize {
|
|
| ^ help: if this is intentional, prefix it with an underscore: `_a`
|
|
|
|
|
note: parameter used here
|
|
--> $DIR/only_used_in_recursion2.rs:78:32
|
|
|
|
|
LL | field_direct(flag - 1, a)
|
|
| ^
|
|
|
|
error: aborting due to 5 previous errors
|
|
|