rust-clippy/tests/ui/needless_borrowed_ref.stderr

29 lines
1.3 KiB
Text
Raw Normal View History

error: this pattern takes a reference on something that is being de-referenced
2018-10-06 16:18:06 +00:00
--> $DIR/needless_borrowed_ref.rs:18:34
|
18 | 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
2018-10-06 16:18:06 +00:00
--> $DIR/needless_borrowed_ref.rs:23:17
|
2018-10-06 16:18:06 +00:00
23 | if let Some(&ref v) = thingy {
| ^^^^^^ help: try removing the `&ref` part and just keep: `v`
error: this pattern takes a reference on something that is being de-referenced
2018-10-06 16:18:06 +00:00
--> $DIR/needless_borrowed_ref.rs:52:27
|
2018-10-06 16:18:06 +00:00
52 | (&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`
error: this pattern takes a reference on something that is being de-referenced
2018-10-06 16:18:06 +00:00
--> $DIR/needless_borrowed_ref.rs:52:38
|
2018-10-06 16:18:06 +00:00
52 | (&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`
2018-01-16 16:06:27 +00:00
error: aborting due to 4 previous errors