Commit 7ca751d
committed
Ignore unused_parens warning in test
warning: unnecessary parentheses around type
--> tests/test.rs:904:20
|
904 | impl Trait for (dyn Fn(u8) + Send + Sync) {
| ^ ^
|
= note: `#[warn(unused_parens)]` on by default
help: remove these parentheses
|
904 - impl Trait for (dyn Fn(u8) + Send + Sync) {
904 + impl Trait for dyn Fn(u8) + Send + Sync {
|1 parent 2bccfeb commit 7ca751d
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
881 | 881 | | |
882 | 882 | | |
883 | 883 | | |
884 | | - | |
| 884 | + | |
885 | 885 | | |
886 | 886 | | |
887 | 887 | | |
| |||
0 commit comments