Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore match_like_matches_macro clippy lint
error: match expression looks like `matches!` macro --> src/expand.rs:284:20 | 284 | if match *arg.ty { | ____________________^ 285 | | Type::Reference(_) => false, 286 | | _ => true, 287 | | } { | |_________________^ help: try this: `!matches!(*arg.ty, Type::Reference(_))` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#match_like_matches_macro = note: `-D clippy::match-like-matches-macro` implied by `-D clippy::all`
- Loading branch information