2020-12-13 15:17:47 +01:00
|
|
|
error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
|
2020-04-02 18:46:01 -07:00
|
|
|
--> $DIR/needless_borrow.rs:14:15
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let c = x(&&a);
|
2017-09-16 11:27:46 +09:00
|
|
|
| ^^^ help: change this to: `&a`
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: `-D clippy::needless-borrow` implied by `-D warnings`
|
2017-05-17 14:19:44 +02:00
|
|
|
|
2020-12-13 15:17:47 +01:00
|
|
|
error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
|
2021-04-17 20:35:39 -04:00
|
|
|
--> $DIR/needless_borrow.rs:27:15
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | 46 => &&a,
|
2017-09-16 11:27:46 +09:00
|
|
|
| ^^^ help: change this to: `&a`
|
2017-05-17 14:19:44 +02:00
|
|
|
|
2021-04-17 20:35:39 -04:00
|
|
|
error: aborting due to 2 previous errors
|
2018-01-16 17:06:27 +01:00
|
|
|
|