mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
a2486dba3b
For a local pattern with no space between `let` and `(` e.g.: let(_a) = 3; we were previously suggesting this illegal code: let_a =3; After this change the suggestion will instead be: let _a =3; (Note the space after `let`)
344 lines
7.0 KiB
Plaintext
344 lines
7.0 KiB
Plaintext
error: unnecessary parentheses around `return` value
|
|
--> $DIR/lint-unnecessary-parens.rs:13:12
|
|
|
|
|
LL | return (1);
|
|
| ^ ^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/lint-unnecessary-parens.rs:3:9
|
|
|
|
|
LL | #![deny(unused_parens)]
|
|
| ^^^^^^^^^^^^^
|
|
help: remove these parentheses
|
|
|
|
|
LL - return (1);
|
|
LL + return 1;
|
|
|
|
|
|
|
error: unnecessary parentheses around `return` value
|
|
--> $DIR/lint-unnecessary-parens.rs:16:12
|
|
|
|
|
LL | return (X { y });
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - return (X { y });
|
|
LL + return X { y };
|
|
|
|
|
|
|
error: unnecessary parentheses around type
|
|
--> $DIR/lint-unnecessary-parens.rs:19:46
|
|
|
|
|
LL | pub fn unused_parens_around_return_type() -> (u32) {
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - pub fn unused_parens_around_return_type() -> (u32) {
|
|
LL + pub fn unused_parens_around_return_type() -> u32 {
|
|
|
|
|
|
|
error: unnecessary parentheses around block return value
|
|
--> $DIR/lint-unnecessary-parens.rs:25:9
|
|
|
|
|
LL | (5)
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - (5)
|
|
LL + 5
|
|
|
|
|
|
|
error: unnecessary parentheses around block return value
|
|
--> $DIR/lint-unnecessary-parens.rs:27:5
|
|
|
|
|
LL | (5)
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - (5)
|
|
LL + 5
|
|
|
|
|
|
|
error: unnecessary parentheses around `if` condition
|
|
--> $DIR/lint-unnecessary-parens.rs:39:7
|
|
|
|
|
LL | if(true) {}
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - if(true) {}
|
|
LL + if true {}
|
|
|
|
|
|
|
error: unnecessary parentheses around `while` condition
|
|
--> $DIR/lint-unnecessary-parens.rs:40:10
|
|
|
|
|
LL | while(true) {}
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - while(true) {}
|
|
LL + while true {}
|
|
|
|
|
|
|
error: unnecessary parentheses around `for` iterator expression
|
|
--> $DIR/lint-unnecessary-parens.rs:41:13
|
|
|
|
|
LL | for _ in(e) {}
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - for _ in(e) {}
|
|
LL + for _ in e {}
|
|
|
|
|
|
|
error: unnecessary parentheses around `match` scrutinee expression
|
|
--> $DIR/lint-unnecessary-parens.rs:42:10
|
|
|
|
|
LL | match(1) { _ => ()}
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - match(1) { _ => ()}
|
|
LL + match 1 { _ => ()}
|
|
|
|
|
|
|
error: unnecessary parentheses around `return` value
|
|
--> $DIR/lint-unnecessary-parens.rs:43:11
|
|
|
|
|
LL | return(1);
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - return(1);
|
|
LL + return 1;
|
|
|
|
|
|
|
error: unnecessary parentheses around assigned value
|
|
--> $DIR/lint-unnecessary-parens.rs:52:31
|
|
|
|
|
LL | pub const CONST_ITEM: usize = (10);
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - pub const CONST_ITEM: usize = (10);
|
|
LL + pub const CONST_ITEM: usize = 10;
|
|
|
|
|
|
|
error: unnecessary parentheses around assigned value
|
|
--> $DIR/lint-unnecessary-parens.rs:53:33
|
|
|
|
|
LL | pub static STATIC_ITEM: usize = (10);
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - pub static STATIC_ITEM: usize = (10);
|
|
LL + pub static STATIC_ITEM: usize = 10;
|
|
|
|
|
|
|
error: unnecessary parentheses around function argument
|
|
--> $DIR/lint-unnecessary-parens.rs:57:9
|
|
|
|
|
LL | bar((true));
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - bar((true));
|
|
LL + bar(true);
|
|
|
|
|
|
|
error: unnecessary parentheses around `if` condition
|
|
--> $DIR/lint-unnecessary-parens.rs:59:8
|
|
|
|
|
LL | if (true) {}
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - if (true) {}
|
|
LL + if true {}
|
|
|
|
|
|
|
error: unnecessary parentheses around `while` condition
|
|
--> $DIR/lint-unnecessary-parens.rs:60:11
|
|
|
|
|
LL | while (true) {}
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - while (true) {}
|
|
LL + while true {}
|
|
|
|
|
|
|
error: unnecessary parentheses around `match` scrutinee expression
|
|
--> $DIR/lint-unnecessary-parens.rs:61:11
|
|
|
|
|
LL | match (true) {
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - match (true) {
|
|
LL + match true {
|
|
|
|
|
|
|
error: unnecessary parentheses around `let` scrutinee expression
|
|
--> $DIR/lint-unnecessary-parens.rs:64:16
|
|
|
|
|
LL | if let 1 = (1) {}
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - if let 1 = (1) {}
|
|
LL + if let 1 = 1 {}
|
|
|
|
|
|
|
error: unnecessary parentheses around `let` scrutinee expression
|
|
--> $DIR/lint-unnecessary-parens.rs:65:19
|
|
|
|
|
LL | while let 1 = (2) {}
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - while let 1 = (2) {}
|
|
LL + while let 1 = 2 {}
|
|
|
|
|
|
|
error: unnecessary parentheses around method argument
|
|
--> $DIR/lint-unnecessary-parens.rs:81:24
|
|
|
|
|
LL | X { y: false }.foo((true));
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - X { y: false }.foo((true));
|
|
LL + X { y: false }.foo(true);
|
|
|
|
|
|
|
error: unnecessary parentheses around assigned value
|
|
--> $DIR/lint-unnecessary-parens.rs:83:18
|
|
|
|
|
LL | let mut _a = (0);
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - let mut _a = (0);
|
|
LL + let mut _a = 0;
|
|
|
|
|
|
|
error: unnecessary parentheses around assigned value
|
|
--> $DIR/lint-unnecessary-parens.rs:84:10
|
|
|
|
|
LL | _a = (0);
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - _a = (0);
|
|
LL + _a = 0;
|
|
|
|
|
|
|
error: unnecessary parentheses around assigned value
|
|
--> $DIR/lint-unnecessary-parens.rs:85:11
|
|
|
|
|
LL | _a += (1);
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - _a += (1);
|
|
LL + _a += 1;
|
|
|
|
|
|
|
error: unnecessary parentheses around pattern
|
|
--> $DIR/lint-unnecessary-parens.rs:87:8
|
|
|
|
|
LL | let(mut _a) = 3;
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - let(mut _a) = 3;
|
|
LL + let mut _a = 3;
|
|
|
|
|
|
|
error: unnecessary parentheses around pattern
|
|
--> $DIR/lint-unnecessary-parens.rs:88:9
|
|
|
|
|
LL | let (mut _a) = 3;
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - let (mut _a) = 3;
|
|
LL + let mut _a = 3;
|
|
|
|
|
|
|
error: unnecessary parentheses around pattern
|
|
--> $DIR/lint-unnecessary-parens.rs:89:8
|
|
|
|
|
LL | let( mut _a) = 3;
|
|
| ^^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - let( mut _a) = 3;
|
|
LL + let mut _a = 3;
|
|
|
|
|
|
|
error: unnecessary parentheses around pattern
|
|
--> $DIR/lint-unnecessary-parens.rs:91:8
|
|
|
|
|
LL | let(_a) = 3;
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - let(_a) = 3;
|
|
LL + let _a = 3;
|
|
|
|
|
|
|
error: unnecessary parentheses around pattern
|
|
--> $DIR/lint-unnecessary-parens.rs:92:9
|
|
|
|
|
LL | let (_a) = 3;
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - let (_a) = 3;
|
|
LL + let _a = 3;
|
|
|
|
|
|
|
error: unnecessary parentheses around pattern
|
|
--> $DIR/lint-unnecessary-parens.rs:93:8
|
|
|
|
|
LL | let( _a) = 3;
|
|
| ^^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - let( _a) = 3;
|
|
LL + let _a = 3;
|
|
|
|
|
|
|
error: aborting due to 28 previous errors
|
|
|