2022-01-11 13:31:35 -06:00
|
|
|
error: this expression creates a reference which is immediately dereferenced by the compiler
|
2021-11-15 10:58:25 -06:00
|
|
|
--> $DIR/needless_borrow.rs:9:15
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2021-09-09 10:38:03 -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
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: this expression creates a reference which is immediately dereferenced by the compiler
|
2021-11-15 10:58:25 -06:00
|
|
|
--> $DIR/needless_borrow.rs:13:13
|
2021-09-09 10:38:03 -05:00
|
|
|
|
|
|
|
|
LL | mut_ref(&mut &mut b); // warn
|
|
|
|
| ^^^^^^^^^^^ help: change this to: `&mut b`
|
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: this expression creates a reference which is immediately dereferenced by the compiler
|
2021-11-15 10:58:25 -06:00
|
|
|
--> $DIR/needless_borrow.rs:25:13
|
|
|
|
|
|
|
|
|
LL | &&a
|
|
|
|
| ^^^ help: change this to: `&a`
|
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: this expression creates a reference which is immediately dereferenced by the compiler
|
2021-11-15 10:58:25 -06:00
|
|
|
--> $DIR/needless_borrow.rs:27: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
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: this expression creates a reference which is immediately dereferenced by the compiler
|
2021-11-15 10:58:25 -06:00
|
|
|
--> $DIR/needless_borrow.rs:33:27
|
|
|
|
|
|
|
|
|
LL | break &ref_a;
|
|
|
|
| ^^^^^^ help: change this to: `ref_a`
|
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: this expression creates a reference which is immediately dereferenced by the compiler
|
2021-11-15 10:58:25 -06:00
|
|
|
--> $DIR/needless_borrow.rs:40:15
|
|
|
|
|
|
|
|
|
LL | let _ = x(&&&a);
|
|
|
|
| ^^^^ help: change this to: `&a`
|
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: this expression creates a reference which is immediately dereferenced by the compiler
|
2021-11-15 10:58:25 -06:00
|
|
|
--> $DIR/needless_borrow.rs:41:15
|
|
|
|
|
|
|
|
|
LL | let _ = x(&mut &&a);
|
|
|
|
| ^^^^^^^^ help: change this to: `&a`
|
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: this expression creates a reference which is immediately dereferenced by the compiler
|
2021-11-15 10:58:25 -06:00
|
|
|
--> $DIR/needless_borrow.rs:42:15
|
|
|
|
|
|
|
|
|
LL | let _ = x(&&&mut b);
|
|
|
|
| ^^^^^^^^ help: change this to: `&mut b`
|
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: this expression creates a reference which is immediately dereferenced by the compiler
|
2021-11-15 10:58:25 -06:00
|
|
|
--> $DIR/needless_borrow.rs:43:15
|
|
|
|
|
|
|
|
|
LL | let _ = x(&&ref_a);
|
|
|
|
| ^^^^^^^ help: change this to: `ref_a`
|
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: this expression creates a reference which is immediately dereferenced by the compiler
|
2021-11-15 10:58:25 -06:00
|
|
|
--> $DIR/needless_borrow.rs:46:11
|
|
|
|
|
|
|
|
|
LL | x(&b);
|
|
|
|
| ^^ help: change this to: `b`
|
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: this expression creates a reference which is immediately dereferenced by the compiler
|
2022-01-03 11:44:33 -06:00
|
|
|
--> $DIR/needless_borrow.rs:53:13
|
|
|
|
|
|
|
|
|
LL | mut_ref(&mut x);
|
|
|
|
| ^^^^^^ help: change this to: `x`
|
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: this expression creates a reference which is immediately dereferenced by the compiler
|
2022-01-03 11:44:33 -06:00
|
|
|
--> $DIR/needless_borrow.rs:54:13
|
|
|
|
|
|
|
|
|
LL | mut_ref(&mut &mut x);
|
|
|
|
| ^^^^^^^^^^^ help: change this to: `x`
|
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: this expression creates a reference which is immediately dereferenced by the compiler
|
2022-01-03 11:44:33 -06:00
|
|
|
--> $DIR/needless_borrow.rs:55:23
|
|
|
|
|
|
|
|
|
LL | let y: &mut i32 = &mut x;
|
|
|
|
| ^^^^^^ help: change this to: `x`
|
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: this expression creates a reference which is immediately dereferenced by the compiler
|
2022-01-03 11:44:33 -06:00
|
|
|
--> $DIR/needless_borrow.rs:56:23
|
|
|
|
|
|
|
|
|
LL | let y: &mut i32 = &mut &mut x;
|
|
|
|
| ^^^^^^^^^^^ help: change this to: `x`
|
|
|
|
|
2022-01-11 13:31:35 -06:00
|
|
|
error: this expression borrows a value the compiler would automatically borrow
|
|
|
|
--> $DIR/needless_borrow.rs:72:13
|
|
|
|
|
|
|
|
|
LL | let _ = (&x).0;
|
|
|
|
| ^^^^ help: change this to: `x`
|
|
|
|
|
|
|
|
error: this expression borrows a value the compiler would automatically borrow
|
|
|
|
--> $DIR/needless_borrow.rs:74:22
|
|
|
|
|
|
|
|
|
LL | let _ = unsafe { (&*x).0 };
|
|
|
|
| ^^^^^ help: change this to: `(*x)`
|
|
|
|
|
2022-02-16 22:14:39 -06:00
|
|
|
error: aborting due to 16 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|