mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-05 20:48:04 +00:00
Allow referencing a compound literal to act like C99
This commit is contained in:
@@ -1653,6 +1653,11 @@ bool check_is_not_addressable(CheckerContext *c, Operand *o) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Ast *expr = unparen_expr(o->expr);
|
||||
if (expr->kind == Ast_CompoundLit) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (o->mode != Addressing_Variable) {
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user