rust/tests/ui/needless_borrow.stderr

29 lines
969 B
Text
Raw Normal View History

error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
--> $DIR/needless_borrow.rs:14:15
|
2018-12-27 16:57:55 +01:00
LL | let c = x(&&a);
2017-09-16 04:27:46 +02:00
| ^^^ help: change this to: `&a`
|
= note: `-D clippy::needless-borrow` implied by `-D warnings`
error: this pattern creates a reference to a reference
--> $DIR/needless_borrow.rs:21:17
|
2018-12-27 16:57:55 +01:00
LL | if let Some(ref cake) = Some(&5) {}
2017-09-16 04:27:46 +02:00
| ^^^^^^^^ help: change this to: `cake`
error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
--> $DIR/needless_borrow.rs:28:15
|
2018-12-27 16:57:55 +01:00
LL | 46 => &&a,
2017-09-16 04:27:46 +02:00
| ^^^ help: change this to: `&a`
error: this pattern creates a reference to a reference
--> $DIR/needless_borrow.rs:51:31
|
2018-12-27 16:57:55 +01:00
LL | let _ = v.iter().filter(|&ref a| a.is_empty());
2017-09-16 04:27:46 +02:00
| ^^^^^ help: change this to: `a`
error: aborting due to 4 previous errors
2018-01-16 17:06:27 +01:00