forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#103468 - chenyukang:yukang/fix-103435-extra…
…-parentheses, r=estebank Fix unused lint and parser caring about spaces to won't produce invalid code Fixes rust-lang#103435
- Loading branch information
Showing
6 changed files
with
149 additions
and
20 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
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
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,18 @@ | ||
// run-rustfix | ||
#![deny(unused_parens)] | ||
|
||
fn main() { | ||
if let Some(_) = Some(1) {} | ||
//~^ ERROR unnecessary parentheses around pattern | ||
|
||
for _x in 1..10 {} | ||
//~^ ERROR unnecessary parentheses around pattern | ||
|
||
if 2 == 1 {} | ||
//~^ ERROR unnecessary parentheses around `if` condition | ||
|
||
// reported by parser | ||
for _x in 1..10 {} | ||
//~^ ERROR expected one of | ||
//~| ERROR unexpected parentheses surrounding | ||
} |
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,18 @@ | ||
// run-rustfix | ||
#![deny(unused_parens)] | ||
|
||
fn main() { | ||
if let(Some(_))= Some(1) {} | ||
//~^ ERROR unnecessary parentheses around pattern | ||
|
||
for(_x)in 1..10 {} | ||
//~^ ERROR unnecessary parentheses around pattern | ||
|
||
if(2 == 1){} | ||
//~^ ERROR unnecessary parentheses around `if` condition | ||
|
||
// reported by parser | ||
for(_x in 1..10){} | ||
//~^ ERROR expected one of | ||
//~| ERROR unexpected parentheses surrounding | ||
} |
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,61 @@ | ||
error: expected one of `)`, `,`, `@`, or `|`, found keyword `in` | ||
--> $DIR/issue-103435-extra-parentheses.rs:15:12 | ||
| | ||
LL | for(_x in 1..10){} | ||
| ^^ expected one of `)`, `,`, `@`, or `|` | ||
|
||
error: unexpected parentheses surrounding `for` loop head | ||
--> $DIR/issue-103435-extra-parentheses.rs:15:8 | ||
| | ||
LL | for(_x in 1..10){} | ||
| ^ ^ | ||
| | ||
help: remove parentheses in `for` loop | ||
| | ||
LL - for(_x in 1..10){} | ||
LL + for _x in 1..10 {} | ||
| | ||
|
||
error: unnecessary parentheses around pattern | ||
--> $DIR/issue-103435-extra-parentheses.rs:5:11 | ||
| | ||
LL | if let(Some(_))= Some(1) {} | ||
| ^ ^ | ||
| | ||
note: the lint level is defined here | ||
--> $DIR/issue-103435-extra-parentheses.rs:2:9 | ||
| | ||
LL | #![deny(unused_parens)] | ||
| ^^^^^^^^^^^^^ | ||
help: remove these parentheses | ||
| | ||
LL - if let(Some(_))= Some(1) {} | ||
LL + if let Some(_) = Some(1) {} | ||
| | ||
|
||
error: unnecessary parentheses around pattern | ||
--> $DIR/issue-103435-extra-parentheses.rs:8:8 | ||
| | ||
LL | for(_x)in 1..10 {} | ||
| ^ ^ | ||
| | ||
help: remove these parentheses | ||
| | ||
LL - for(_x)in 1..10 {} | ||
LL + for _x in 1..10 {} | ||
| | ||
|
||
error: unnecessary parentheses around `if` condition | ||
--> $DIR/issue-103435-extra-parentheses.rs:11:7 | ||
| | ||
LL | if(2 == 1){} | ||
| ^ ^ | ||
| | ||
help: remove these parentheses | ||
| | ||
LL - if(2 == 1){} | ||
LL + if 2 == 1 {} | ||
| | ||
|
||
error: aborting due to 5 previous errors | ||
|