noir-lang/noir

Implement support for operator overloading in the comptime interpreter

Closed this issue · 1 comments

We have a TODO to support operator overloading in the interpreter. We should resolve this and implement this feature.

// TODO: Need to account for operator overloading
assert!(
self.interner.get_selected_impl_for_expression(id).is_none(),
"Operator overloading is unimplemented in the interpreter"
);

Duplicate of #4925