2017-05-17 07:19:44 -05:00
|
|
|
error: this expression borrows a reference that is immediately dereferenced by the compiler
|
2020-04-02 20:46:01 -05:00
|
|
|
--> $DIR/needless_borrow.rs:14:15
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | 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
|
2020-04-02 20:46:01 -05:00
|
|
|
--> $DIR/needless_borrow.rs:21:17
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | 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
|
2020-04-02 20:46:01 -05:00
|
|
|
--> $DIR/needless_borrow.rs:28:15
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | 46 => &&a,
|
2017-09-15 21:27:46 -05:00
|
|
|
| ^^^ help: change this to: `&a`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
error: this pattern creates a reference to a reference
|
2020-04-02 20:46:01 -05:00
|
|
|
--> $DIR/needless_borrow.rs:51:31
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | 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
|
|
|
|
2019-09-25 07:03:28 -05:00
|
|
|
error: aborting due to 4 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|