summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/issue-103435-extra-parentheses.rs
blob: cc81a64f21779f8e69719d852d8a25503d563d31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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 unexpected parentheses surrounding
}