diff --git a/compiler/ast/src/types/type_.rs b/compiler/ast/src/types/type_.rs index 3105bcbced..a4bb3b033a 100644 --- a/compiler/ast/src/types/type_.rs +++ b/compiler/ast/src/types/type_.rs @@ -55,7 +55,7 @@ impl Type { | (Type::Boolean, Type::Boolean) | (Type::Char, Type::Char) | (Type::Field, Type::Field) - | (Type::Group, Type::Group) + | (Type::Group, Type::Group) | (Type::Scalar, Type::Scalar) => true, (Type::IntegerType(left), Type::IntegerType(right)) => left.eq(right), _ => false,