2020-12-20 16:19:49 +00:00
|
|
|
error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/needless_borrow.rs:9:15
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2021-09-28 17:03:12 +00:00
|
|
|
LL | let _ = x(&&a); // warn
|
2017-09-16 02:27:46 +00:00
|
|
|
| ^^^ help: change this to: `&a`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::needless-borrow` implied by `-D warnings`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2021-09-28 17:03:12 +00:00
|
|
|
error: this expression borrows a reference (`&mut i32`) that is immediately dereferenced by the compiler
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/needless_borrow.rs:13:13
|
2021-09-28 17:03:12 +00:00
|
|
|
|
|
|
|
|
LL | mut_ref(&mut &mut b); // warn
|
|
|
|
| ^^^^^^^^^^^ help: change this to: `&mut b`
|
|
|
|
|
2020-12-20 16:19:49 +00:00
|
|
|
error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/needless_borrow.rs:25:13
|
|
|
|
|
|
|
|
|
LL | &&a
|
|
|
|
| ^^^ help: change this to: `&a`
|
|
|
|
|
|
|
|
error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
|
|
|
|
--> $DIR/needless_borrow.rs:27:15
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 46 => &&a,
|
2017-09-16 02:27:46 +00:00
|
|
|
| ^^^ help: change this to: `&a`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2021-12-06 11:33:31 +00:00
|
|
|
error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
|
|
|
|
--> $DIR/needless_borrow.rs:33:27
|
|
|
|
|
|
|
|
|
LL | break &ref_a;
|
|
|
|
| ^^^^^^ help: change this to: `ref_a`
|
|
|
|
|
|
|
|
error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
|
|
|
|
--> $DIR/needless_borrow.rs:40:15
|
|
|
|
|
|
|
|
|
LL | let _ = x(&&&a);
|
|
|
|
| ^^^^ help: change this to: `&a`
|
|
|
|
|
|
|
|
error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
|
|
|
|
--> $DIR/needless_borrow.rs:41:15
|
|
|
|
|
|
|
|
|
LL | let _ = x(&mut &&a);
|
|
|
|
| ^^^^^^^^ help: change this to: `&a`
|
|
|
|
|
|
|
|
error: this expression borrows a reference (`&mut i32`) that is immediately dereferenced by the compiler
|
|
|
|
--> $DIR/needless_borrow.rs:42:15
|
|
|
|
|
|
|
|
|
LL | let _ = x(&&&mut b);
|
|
|
|
| ^^^^^^^^ help: change this to: `&mut b`
|
|
|
|
|
|
|
|
error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
|
|
|
|
--> $DIR/needless_borrow.rs:43:15
|
|
|
|
|
|
|
|
|
LL | let _ = x(&&ref_a);
|
|
|
|
| ^^^^^^^ help: change this to: `ref_a`
|
|
|
|
|
|
|
|
error: this expression borrows a reference (`&mut i32`) that is immediately dereferenced by the compiler
|
|
|
|
--> $DIR/needless_borrow.rs:46:11
|
|
|
|
|
|
|
|
|
LL | x(&b);
|
|
|
|
| ^^ help: change this to: `b`
|
|
|
|
|
|
|
|
error: aborting due to 10 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|