2017-05-17 07:19:44 -05:00
|
|
|
error: this expression borrows a reference that is immediately dereferenced by the compiler
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/needless_borrow.rs:13:15
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
13 | 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
|
|
|
|
|
|
|
|
= note: `-D needless-borrow` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: this pattern creates a reference to a reference
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/needless_borrow.rs:20:17
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
20 | 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
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/needless_borrow.rs:27:15
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
27 | 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
|
|
|
|
--> $DIR/needless_borrow.rs:49:34
|
|
|
|
|
|
|
|
|
49 | let _ = v.iter_mut().filter(|&ref a| a.is_empty());
|
|
|
|
| ^^^^^^ help: try removing the `&ref` part and just keep: `a`
|
|
|
|
|
|
|
|
|
= note: `-D needless-borrowed-reference` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: this pattern takes a reference on something that is being de-referenced
|
|
|
|
--> $DIR/needless_borrow.rs:50:30
|
|
|
|
|
|
|
|
|
50 | let _ = v.iter().filter(|&ref a| a.is_empty());
|
|
|
|
| ^^^^^^ 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
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/needless_borrow.rs:50:31
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
50 | 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
|
|
|
|