From 6c76a7ce4e78654ccdff0eba5a4ab76f7d4121c3 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Thu, 29 Jan 2026 11:42:58 +0100 Subject: [PATCH] Make methods not fully determined a warning. --- src/compiler/sema_expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/sema_expr.c b/src/compiler/sema_expr.c index 9734f3899..595616921 100644 --- a/src/compiler/sema_expr.c +++ b/src/compiler/sema_expr.c @@ -5595,7 +5595,7 @@ CONTINUE: Decl *decl = type->decl; if (!decl->unit || decl->unit->module->stage < ANALYSIS_POST_REGISTER) { - RETURN_SEMA_ERROR(expr, "Methods are not fully determined for %s at this point.", decl->name); + SEMA_WARN(expr, "Methods are not fully determined for %s at this point.", decl->name); } // Interface, prefer interface methods. if (decl->decl_kind == DECL_INTERFACE)