mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
40 lines
958 B
Text
40 lines
958 B
Text
error: consider removing unnecessary double parentheses
|
|
--> $DIR/double_parens.rs:15:5
|
|
|
|
|
LL | ((0))
|
|
| ^^^^^
|
|
|
|
|
= note: `-D clippy::double-parens` implied by `-D warnings`
|
|
|
|
error: consider removing unnecessary double parentheses
|
|
--> $DIR/double_parens.rs:19:14
|
|
|
|
|
LL | dummy_fn((0));
|
|
| ^^^
|
|
|
|
error: consider removing unnecessary double parentheses
|
|
--> $DIR/double_parens.rs:23:20
|
|
|
|
|
LL | x.dummy_method((0));
|
|
| ^^^
|
|
|
|
error: consider removing unnecessary double parentheses
|
|
--> $DIR/double_parens.rs:27:5
|
|
|
|
|
LL | ((1, 2))
|
|
| ^^^^^^^^
|
|
|
|
error: consider removing unnecessary double parentheses
|
|
--> $DIR/double_parens.rs:31:5
|
|
|
|
|
LL | (())
|
|
| ^^^^
|
|
|
|
error: consider removing unnecessary double parentheses
|
|
--> $DIR/double_parens.rs:53:16
|
|
|
|
|
LL | assert_eq!(((1, 2)), (1, 2), "Error");
|
|
| ^^^^^^^^
|
|
|
|
error: aborting due to 6 previous errors
|
|
|