Skip to content

Commit e0d90cc

Browse files
committed
Update tools and fulldeps tests
1 parent 45e19aa commit e0d90cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ struct ControlFlow<'a> {
664664

665665
fn extract_pats_and_cond(expr: &ast::Expr) -> (Option<&ast::Pat>, &ast::Expr) {
666666
match expr.kind {
667-
ast::ExprKind::Let(ref pat, ref cond, _) => (Some(pat), cond),
667+
ast::ExprKind::Let(ref pat, ref cond, _, _) => (Some(pat), cond),
668668
_ => (None, expr),
669669
}
670670
}

0 commit comments

Comments
 (0)