Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve ignored_unit_patterns pedantic clippy lint in test suite
warning: matching over `()` is more explicit --> tests/test.rs:950:22 | 950 | mac!(let _: <Self as Trait>::Associated2;); | ^ help: use `()` instead of `_`: `()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ignored_unit_patterns = note: `-W clippy::ignored-unit-patterns` implied by `-W clippy::pedantic` warning: matching over `()` is more explicit --> tests/test.rs:1358:17 | 1358 | _ = async { | ^ help: use `()` instead of `_`: `()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ignored_unit_patterns
- Loading branch information