]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-unnecessary-parens.rs
9f42b855a870d7b4e44abb0e86f4e23c3a6ef5a7
[rust.git] / src / test / ui / lint / lint-unnecessary-parens.rs
1 #![deny(unused_parens)]
2
3 #[derive(Eq, PartialEq)]
4 struct X { y: bool }
5 impl X {
6     fn foo(&self, conjunct: bool) -> bool { self.y && conjunct }
7 }
8
9 fn foo() -> isize {
10     return (1); //~ ERROR unnecessary parentheses around `return` value
11 }
12 fn bar(y: bool) -> X {
13     return (X { y }); //~ ERROR unnecessary parentheses around `return` value
14 }
15
16 fn unused_parens_around_return_type() -> (u32) { //~ ERROR unnecessary parentheses around type
17     panic!()
18 }
19
20 trait Trait {
21     fn test(&self);
22 }
23
24 fn passes_unused_parens_lint() -> &'static (dyn Trait) {
25     panic!()
26 }
27
28 fn main() {
29     foo();
30     bar((true)); //~ ERROR unnecessary parentheses around function argument
31
32     if (true) {} //~ ERROR unnecessary parentheses around `if` condition
33     while (true) {} //~ ERROR unnecessary parentheses around `while` condition
34     //~^ WARN denote infinite loops with
35     match (true) { //~ ERROR unnecessary parentheses around `match` head expression
36         _ => {}
37     }
38     if let 1 = (1) {} //~ ERROR unnecessary parentheses around `let` head expression
39     while let 1 = (2) {} //~ ERROR unnecessary parentheses around `let` head expression
40     let v = X { y: false };
41     // struct lits needs parens, so these shouldn't warn.
42     if (v == X { y: true }) {}
43     if (X { y: true } == v) {}
44     if (X { y: false }.y) {}
45
46     while (X { y: false }.foo(true)) {}
47     while (true | X { y: false }.y) {}
48
49     match (X { y: false }) {
50         _ => {}
51     }
52
53     X { y: false }.foo((true)); //~ ERROR unnecessary parentheses around method argument
54
55     let mut _a = (0); //~ ERROR unnecessary parentheses around assigned value
56     _a = (0); //~ ERROR unnecessary parentheses around assigned value
57     _a += (1); //~ ERROR unnecessary parentheses around assigned value
58 }