foiled again (forgot to run cargo test)

This commit is contained in:
Centri3 2023-06-01 20:32:08 -05:00
parent 0086b6ab0a
commit ab70553a38
2 changed files with 2 additions and 2 deletions

View File

@ -344,7 +344,7 @@ impl<'cx> WithSearchPat for (&Attribute, &LateContext<'cx>) {
type Context = LateContext<'cx>;
fn search_pat(&self, _cx: &Self::Context) -> (Pat, Pat) {
attr_search_pat(&self.0)
attr_search_pat(self.0)
}
fn span(&self) -> Span {

View File

@ -25,7 +25,7 @@ struct CfgT;
fn ignore_external() {
external! {
#[allow(clippy::needless_borrow)]
#[allow(clippy::needless_borrow)] // Should not lint
fn a() {}
}
}