Update tools and fulldeps tests

This commit is contained in:
Matthew Jasper 2023-09-08 16:14:47 +00:00
parent 45e19aa80c
commit e0d90ccd45

View File

@ -664,7 +664,7 @@ struct ControlFlow<'a> {
fn extract_pats_and_cond(expr: &ast::Expr) -> (Option<&ast::Pat>, &ast::Expr) {
match expr.kind {
ast::ExprKind::Let(ref pat, ref cond, _) => (Some(pat), cond),
ast::ExprKind::Let(ref pat, ref cond, _, _) => (Some(pat), cond),
_ => (None, expr),
}
}