2020-12-20 10:19:49 -06:00
|
|
|
error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
|
2021-09-28 12:03:12 -05:00
|
|
|
--> $DIR/needless_borrow.rs:8:15
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2021-09-28 12:03:12 -05:00
|
|
|
LL | let _ = x(&&a); // warn
|
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
|
|
|
|
2021-09-28 12:03:12 -05:00
|
|
|
error: this expression borrows a reference (`&mut i32`) that is immediately dereferenced by the compiler
|
|
|
|
--> $DIR/needless_borrow.rs:12:13
|
|
|
|
|
|
|
|
|
LL | mut_ref(&mut &mut b); // warn
|
|
|
|
| ^^^^^^^^^^^ help: change this to: `&mut b`
|
|
|
|
|
2020-12-20 10:19:49 -06:00
|
|
|
error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
|
2021-09-28 12:03:12 -05:00
|
|
|
--> $DIR/needless_borrow.rs:26: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
|
|
|
|
2021-09-28 12:03:12 -05:00
|
|
|
error: aborting due to 3 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|