diff --git a/compiler/src/expression/expression.rs b/compiler/src/expression/expression.rs index 3304c2725d..d79416fd4d 100644 --- a/compiler/src/expression/expression.rs +++ b/compiler/src/expression/expression.rs @@ -54,7 +54,7 @@ impl> ConstrainedProgram { Expression::Address(address, span) => Ok(ConstrainedValue::Address(Address::constant(address, span)?)), Expression::Boolean(boolean, span) => Ok(ConstrainedValue::Boolean(new_bool_constant(boolean, span)?)), Expression::Field(field, span) => Ok(ConstrainedValue::Field(FieldType::constant(field, span)?)), - Expression::Group(group_element) => Ok(ConstrainedValue::Group(G::constant(group_element)?)), + Expression::Group(group_element) => Ok(ConstrainedValue::Group(G::constant(*group_element)?)), Expression::Implicit(value, span) => Ok(enforce_number_implicit(expected_type, value, span)?), Expression::Integer(type_, integer, span) => { Ok(ConstrainedValue::Integer(Integer::new_constant(&type_, integer, span)?)) diff --git a/typed/src/expression.rs b/typed/src/expression.rs index 5fc2543c1a..cb6132bd8b 100644 --- a/typed/src/expression.rs +++ b/typed/src/expression.rs @@ -64,7 +64,7 @@ pub enum Expression { Address(String, Span), Boolean(String, Span), Field(String, Span), - Group(GroupValue), + Group(Box), Implicit(String, Span), Integer(IntegerType, String, Span), @@ -597,7 +597,7 @@ impl<'ast> From> for Expression { impl<'ast> From> for Expression { fn from(ast_group: AstGroupValue<'ast>) -> Self { - Expression::Group(GroupValue::from(ast_group)) + Expression::Group(Box::new(GroupValue::from(ast_group))) } }