all: clippy

This commit is contained in:
Ryan Chandler 2022-07-25 19:15:55 +01:00
parent 570433de1c
commit 53c7970f83
No known key found for this signature in database
GPG Key ID: F113BCADDB3B0CCA

View File

@ -139,7 +139,7 @@ impl Parser {
Statement::Constant { .. } => {
return Err(ParseError::TraitCannotContainConstant(self.current.span))
},
s @ _ => {
s => {
body.push(s);
},
}