mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
42 lines
1.5 KiB
Text
42 lines
1.5 KiB
Text
error: this expression borrows a reference that is immediately dereferenced by the compiler
|
|
--> $DIR/needless_borrow.rs:15:15
|
|
|
|
|
15 | let c = x(&&a);
|
|
| ^^^ help: change this to: `&a`
|
|
|
|
|
= note: `-D clippy::needless-borrow` implied by `-D warnings`
|
|
|
|
error: this pattern creates a reference to a reference
|
|
--> $DIR/needless_borrow.rs:22:17
|
|
|
|
|
22 | if let Some(ref cake) = Some(&5) {}
|
|
| ^^^^^^^^ help: change this to: `cake`
|
|
|
|
error: this expression borrows a reference that is immediately dereferenced by the compiler
|
|
--> $DIR/needless_borrow.rs:29:15
|
|
|
|
|
29 | 46 => &&a,
|
|
| ^^^ help: change this to: `&a`
|
|
|
|
error: this pattern takes a reference on something that is being de-referenced
|
|
--> $DIR/needless_borrow.rs:51:34
|
|
|
|
|
51 | let _ = v.iter_mut().filter(|&ref a| a.is_empty());
|
|
| ^^^^^^ help: try removing the `&ref` part and just keep: `a`
|
|
|
|
|
= note: `-D clippy::needless-borrowed-reference` implied by `-D warnings`
|
|
|
|
error: this pattern takes a reference on something that is being de-referenced
|
|
--> $DIR/needless_borrow.rs:52:30
|
|
|
|
|
52 | let _ = v.iter().filter(|&ref a| a.is_empty());
|
|
| ^^^^^^ help: try removing the `&ref` part and just keep: `a`
|
|
|
|
error: this pattern creates a reference to a reference
|
|
--> $DIR/needless_borrow.rs:52:31
|
|
|
|
|
52 | let _ = v.iter().filter(|&ref a| a.is_empty());
|
|
| ^^^^^ help: change this to: `a`
|
|
|
|
error: aborting due to 6 previous errors
|
|
|