Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore non_minimal_cfg clippy lint in test
error: unneeded sub `cfg` when there is no condition --> tests/test.rs:1481:66 | 1481 | async fn cfg_param(&self, #[cfg(any())] param: u8, #[cfg(all())] _unused: u8) {} | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#non_minimal_cfg = note: `-D clippy::non-minimal-cfg` implied by `-D clippy::all` error: unneeded sub `cfg` when there is no condition --> tests/test.rs:1483:71 | 1483 | async fn cfg_param_wildcard(&self, #[cfg(any())] _: u8, #[cfg(all())] _: u8) {} | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#non_minimal_cfg error: unneeded sub `cfg` when there is no condition --> tests/test.rs:1488:19 | 1488 | #[cfg(all())] (_left, _right): (u8, u8), | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#non_minimal_cfg
- Loading branch information