Skip to content

Commit

Permalink
Fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
jfecher committed Mar 30, 2023
1 parent 32166a7 commit a8d0692
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/noirc_frontend/src/monomorphization/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,8 @@ impl<'interner> Monomorphizer<'interner> {
let return_type = ret_type.clone();
let name = lambda_name.to_owned();

let function = ast::Function { id, name, parameters, body, return_type };
let unconstrained = false;
let function = ast::Function { id, name, parameters, body, return_type, unconstrained };
self.push_function(id, function);

ast::Expression::Ident(ast::Ident {
Expand Down

0 comments on commit a8d0692

Please sign in to comment.