diff --git a/nac3core/src/codegen/expr.rs b/nac3core/src/codegen/expr.rs index 15e73cbb..8497286f 100644 --- a/nac3core/src/codegen/expr.rs +++ b/nac3core/src/codegen/expr.rs @@ -2208,7 +2208,10 @@ pub fn gen_cmpop_expr_with_values<'ctx, G: CodeGenerator>( ctx.ctx.bool_type().get_poison() } else { - unimplemented!() + return Err(format!("'{}' not supported between instances of '{}' and '{}'", + op.op_info().symbol, + ctx.unifier.stringify(left_ty), + ctx.unifier.stringify(right_ty))) }; Ok(prev?.map(|v| ctx.builder.build_and(v, current, "cmp").unwrap()).or(Some(current)))