fmt and clippy fixes

This commit is contained in:
Luke Boswell 2024-03-20 12:31:04 +11:00
parent cc10df6db9
commit e74501981e
No known key found for this signature in database
GPG key ID: F6DB3C9DB47377B0
6 changed files with 6 additions and 19 deletions

View file

@ -1441,12 +1441,12 @@ pub fn canonicalize_expr<'a>(
bad_expr
);
}
bad_expr @ ast::Expr::Suffixed(_) => {
bad_expr @ ast::Expr::Suffixed(_) => {
internal_error!(
"A suffixed expression did not get desugared somehow: {:#?}",
bad_expr
);
},
}
};
// At the end, diff used_idents and defined_idents to see which were unused.