rust-clippy/tests/ui/needless_borrow.stderr

17 lines
547 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 15:57:55 +00:00
LL | 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 expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
--> $DIR/needless_borrow.rs:27:15
|
2018-12-27 15:57:55 +00:00
LL | 46 => &&a,
2017-09-16 02:27:46 +00:00
| ^^^ help: change this to: `&a`
error: aborting due to 2 previous errors
2018-01-16 16:06:27 +00:00