2017-05-17 07:19:44 -05:00
|
|
|
error: this expression borrows a reference that is immediately dereferenced by the compiler
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/needless_borrow.rs:25:15
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
25 | let c = x(&&a);
|
2017-09-15 21:27:46 -05:00
|
|
|
| ^^^ help: change this to: `&a`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::needless-borrow` implied by `-D warnings`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
error: this pattern creates a reference to a reference
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/needless_borrow.rs:32:17
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
32 | if let Some(ref cake) = Some(&5) {}
|
2017-09-15 21:27:46 -05:00
|
|
|
| ^^^^^^^^ help: change this to: `cake`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
error: this expression borrows a reference that is immediately dereferenced by the compiler
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/needless_borrow.rs:39:15
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
39 | 46 => &&a,
|
2017-09-15 21:27:46 -05:00
|
|
|
| ^^^ help: change this to: `&a`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
2017-08-21 07:22:41 -05:00
|
|
|
error: this pattern takes a reference on something that is being de-referenced
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/needless_borrow.rs:61:34
|
2017-08-21 07:22:41 -05:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
61 | let _ = v.iter_mut().filter(|&ref a| a.is_empty());
|
2017-08-21 07:22:41 -05:00
|
|
|
| ^^^^^^ help: try removing the `&ref` part and just keep: `a`
|
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::needless-borrowed-reference` implied by `-D warnings`
|
2017-08-21 07:22:41 -05:00
|
|
|
|
|
|
|
error: this pattern takes a reference on something that is being de-referenced
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/needless_borrow.rs:62:30
|
2017-08-21 07:22:41 -05:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
62 | let _ = v.iter().filter(|&ref a| a.is_empty());
|
2017-08-21 07:22:41 -05:00
|
|
|
| ^^^^^^ help: try removing the `&ref` part and just keep: `a`
|
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
error: this pattern creates a reference to a reference
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/needless_borrow.rs:62:31
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
62 | let _ = v.iter().filter(|&ref a| a.is_empty());
|
2017-09-15 21:27:46 -05:00
|
|
|
| ^^^^^ help: change this to: `a`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
2018-04-05 10:59:35 -05:00
|
|
|
error: aborting due to 6 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|