-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #3976 - phansch:deref_addrof_rustfix, r=flip1995
Add run-rustfix for deref_addrof lint * renames `tests/ui/reference.{rs,stderr}` to `tests/ui/deref_addrof.{rs,stderr} * Moves small part of the testfile to a separate file as the lint triggered again on the fixed code (as intended) * Adds `// run-rustfix` to `tests/ui/deref_addrof.rs` cc #3630
- Loading branch information
Showing
5 changed files
with
94 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// run-rustfix | ||
|
||
fn get_number() -> usize { | ||
10 | ||
} | ||
|
||
fn get_reference(n: &usize) -> &usize { | ||
n | ||
} | ||
|
||
#[allow(clippy::many_single_char_names, clippy::double_parens)] | ||
#[allow(unused_variables, unused_parens)] | ||
#[warn(clippy::deref_addrof)] | ||
fn main() { | ||
let a = 10; | ||
let aref = &a; | ||
|
||
let b = a; | ||
|
||
let b = get_number(); | ||
|
||
let b = *get_reference(&a); | ||
|
||
let bytes: Vec<usize> = vec![1, 2, 3, 4]; | ||
let b = bytes[1..2][0]; | ||
|
||
//This produces a suggestion of 'let b = (a);' which | ||
//will trigger the 'unused_parens' lint | ||
let b = (a); | ||
|
||
let b = a; | ||
|
||
#[rustfmt::skip] | ||
let b = a; | ||
|
||
let b = &a; | ||
|
||
let b = *aref; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,52 @@ | ||
error: immediately dereferencing a reference | ||
--> $DIR/reference.rs:16:13 | ||
--> $DIR/deref_addrof.rs:18:13 | ||
| | ||
LL | let b = *&a; | ||
| ^^^ help: try this: `a` | ||
| | ||
= note: `-D clippy::deref-addrof` implied by `-D warnings` | ||
|
||
error: immediately dereferencing a reference | ||
--> $DIR/reference.rs:18:13 | ||
--> $DIR/deref_addrof.rs:20:13 | ||
| | ||
LL | let b = *&get_number(); | ||
| ^^^^^^^^^^^^^^ help: try this: `get_number()` | ||
|
||
error: immediately dereferencing a reference | ||
--> $DIR/reference.rs:23:13 | ||
--> $DIR/deref_addrof.rs:25:13 | ||
| | ||
LL | let b = *&bytes[1..2][0]; | ||
| ^^^^^^^^^^^^^^^^ help: try this: `bytes[1..2][0]` | ||
|
||
error: immediately dereferencing a reference | ||
--> $DIR/reference.rs:27:13 | ||
--> $DIR/deref_addrof.rs:29:13 | ||
| | ||
LL | let b = *&(a); | ||
| ^^^^^ help: try this: `(a)` | ||
|
||
error: immediately dereferencing a reference | ||
--> $DIR/reference.rs:29:13 | ||
--> $DIR/deref_addrof.rs:31:13 | ||
| | ||
LL | let b = *(&a); | ||
| ^^^^^ help: try this: `a` | ||
|
||
error: immediately dereferencing a reference | ||
--> $DIR/reference.rs:32:13 | ||
--> $DIR/deref_addrof.rs:34:13 | ||
| | ||
LL | let b = *((&a)); | ||
| ^^^^^^^ help: try this: `a` | ||
|
||
error: immediately dereferencing a reference | ||
--> $DIR/reference.rs:34:13 | ||
--> $DIR/deref_addrof.rs:36:13 | ||
| | ||
LL | let b = *&&a; | ||
| ^^^^ help: try this: `&a` | ||
|
||
error: immediately dereferencing a reference | ||
--> $DIR/reference.rs:36:14 | ||
--> $DIR/deref_addrof.rs:38:14 | ||
| | ||
LL | let b = **&aref; | ||
| ^^^^^^ help: try this: `aref` | ||
|
||
error: immediately dereferencing a reference | ||
--> $DIR/reference.rs:40:14 | ||
| | ||
LL | let b = **&&a; | ||
| ^^^^ help: try this: `&a` | ||
|
||
error: immediately dereferencing a reference | ||
--> $DIR/reference.rs:44:17 | ||
| | ||
LL | let y = *&mut x; | ||
| ^^^^^^^ help: try this: `x` | ||
|
||
error: immediately dereferencing a reference | ||
--> $DIR/reference.rs:51:18 | ||
| | ||
LL | let y = **&mut &mut x; | ||
| ^^^^^^^^^^^^ help: try this: `&mut x` | ||
|
||
error: aborting due to 11 previous errors | ||
error: aborting due to 8 previous errors | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#[warn(clippy::deref_addrof)] | ||
#[allow(unused_variables)] | ||
fn main() { | ||
let a = 10; | ||
|
||
//This produces a suggestion of 'let b = *&a;' which | ||
//will trigger the 'clippy::deref_addrof' lint again | ||
let b = **&&a; | ||
|
||
{ | ||
let mut x = 10; | ||
let y = *&mut x; | ||
} | ||
|
||
{ | ||
//This produces a suggestion of 'let y = *&mut x' which | ||
//will trigger the 'clippy::deref_addrof' lint again | ||
let mut x = 10; | ||
let y = **&mut &mut x; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
error: immediately dereferencing a reference | ||
--> $DIR/deref_addrof_double_trigger.rs:8:14 | ||
| | ||
LL | let b = **&&a; | ||
| ^^^^ help: try this: `&a` | ||
| | ||
= note: `-D clippy::deref-addrof` implied by `-D warnings` | ||
|
||
error: immediately dereferencing a reference | ||
--> $DIR/deref_addrof_double_trigger.rs:12:17 | ||
| | ||
LL | let y = *&mut x; | ||
| ^^^^^^^ help: try this: `x` | ||
|
||
error: immediately dereferencing a reference | ||
--> $DIR/deref_addrof_double_trigger.rs:19:18 | ||
| | ||
LL | let y = **&mut &mut x; | ||
| ^^^^^^^^^^^^ help: try this: `&mut x` | ||
|
||
error: aborting due to 3 previous errors | ||
|