1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 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
|