Skip to content

Commit

Permalink
Fix tiny hint
Browse files Browse the repository at this point in the history
  • Loading branch information
purefunctor committed Feb 13, 2024
1 parent 2f644cb commit c8f8d27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/analyzer-module/src/infer/rules/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ impl InferContext<'_> {
}
Expr::Lambda(_, _) => todo!("check_expr(Lambda)"),
Expr::LetIn(bindings, body) => {
self.infer_let_bindings(db, &bindings);
self.infer_let_bindings(db, bindings);
self.check_expr(db, *body, expected_ty);
}
Expr::Literal(literal) => match literal {
Expand Down

0 comments on commit c8f8d27

Please sign in to comment.