rust-clippy/tests/ui/needless_borrow.stderr

43 lines
1.5 KiB
Text
Raw Normal View History

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