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