2017-07-01 12:02:00 +02:00
|
|
|
error: this pattern takes a reference on something that is being de-referenced
|
2017-07-01 18:51:20 +02:00
|
|
|
--> needless_borrowed_ref.rs:8:34
|
2017-06-29 13:46:07 +02:00
|
|
|
|
|
2017-07-01 12:02:00 +02:00
|
|
|
8 | let _ = v.iter_mut().filter(|&ref a| a.is_empty());
|
|
|
|
| ^^^^^^ help: try removing the `&ref` part and just keep `a`
|
2017-06-29 13:46:07 +02:00
|
|
|
|
|
2017-07-01 12:02:00 +02:00
|
|
|
= note: `-D needless-borrowed-reference` implied by `-D warnings`
|
2017-06-29 13:46:07 +02:00
|
|
|
= help: for further information visit https://github.com/Manishearth/rust-clippy/wiki#needless_borrowed_reference
|
2017-07-01 12:02:00 +02:00
|
|
|
|
|
|
|
error: this pattern takes a reference on something that is being de-referenced
|
2017-07-01 18:51:20 +02:00
|
|
|
--> needless_borrowed_ref.rs:13:17
|
2017-07-01 12:02:00 +02:00
|
|
|
|
|
|
|
|
13 | if let Some(&ref v) = thingy {
|
|
|
|
| ^^^^^^ help: try removing the `&ref` part and just keep `v`
|
|
|
|
|
|
|
|
|
= help: for further information visit https://github.com/Manishearth/rust-clippy/wiki#needless_borrowed_reference
|
|
|
|
|
|
|
|
error: this pattern takes a reference on something that is being de-referenced
|
2017-07-01 18:51:20 +02:00
|
|
|
--> needless_borrowed_ref.rs:42:27
|
2017-07-01 12:02:00 +02:00
|
|
|
|
|
|
|
|
42 | (&Animal::Cat(v), &ref k) | (&ref k, &Animal::Cat(v)) => (), // lifetime mismatch error if there is no '&ref'
|
|
|
|
| ^^^^^^ help: try removing the `&ref` part and just keep `k`
|
|
|
|
|
|
|
|
|
= help: for further information visit https://github.com/Manishearth/rust-clippy/wiki#needless_borrowed_reference
|
|
|
|
|
|
|
|
error: this pattern takes a reference on something that is being de-referenced
|
2017-07-01 18:51:20 +02:00
|
|
|
--> needless_borrowed_ref.rs:42:38
|
2017-07-01 12:02:00 +02:00
|
|
|
|
|
|
|
|
42 | (&Animal::Cat(v), &ref k) | (&ref k, &Animal::Cat(v)) => (), // lifetime mismatch error if there is no '&ref'
|
|
|
|
| ^^^^^^ help: try removing the `&ref` part and just keep `k`
|
|
|
|
|
|
|
|
|
= help: for further information visit https://github.com/Manishearth/rust-clippy/wiki#needless_borrowed_reference
|
|
|
|
|
|
|
|
error: aborting due to previous error(s)
|
|
|
|
|
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
|
|
|
|
To learn more, run the command again with --verbose.
|