Skip to content

Commit

Permalink
Merge branch 'master' into assert-eq-builtin
Browse files Browse the repository at this point in the history
* master:
  chore: Run `cargo fmt` (#2455)
  • Loading branch information
TomAFrench committed Aug 28, 2023
2 parents 1978036 + b1ccd71 commit 4dfff98
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/noirc_frontend/src/hir/type_check/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,11 @@ impl<'interner> TypeChecker<'interner> {
rhs: method_call.object,
}));
self.interner.push_expr_type(&method_call.object, new_type);
self.interner.push_expr_location(method_call.object, location.span, location.file);
self.interner.push_expr_location(
method_call.object,
location.span,
location.file,
);
}
}
}
Expand Down

0 comments on commit 4dfff98

Please sign in to comment.