mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 09:54:45 +00:00
Fix #1713
This commit is contained in:
@@ -8161,7 +8161,10 @@ ExprKind check_compound_literal(CheckerContext *c, Operand *o, Ast *node, Type *
|
||||
case Type_Basic: {
|
||||
if (!is_type_any(t)) {
|
||||
if (cl->elems.count != 0) {
|
||||
error(node, "Illegal compound literal");
|
||||
gbString s = type_to_string(t);
|
||||
error(node, "Illegal compound literal, %s cannot be used as a compound literal with fields", s);
|
||||
gb_string_free(s);
|
||||
is_constant = false;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user