Fix race condition with procedure aliases checking for declarations on constant aliases

This commit is contained in:
gingerBill
2021-04-26 19:46:42 +01:00
parent 1aa9c49172
commit a38586420c
2 changed files with 3 additions and 2 deletions

View File

@@ -460,14 +460,14 @@ void check_const_decl(CheckerContext *ctx, Entity *e, Ast *type_expr, Ast *init,
case Entity_LibraryName:
case Entity_ImportName:
{
override_entity_in_scope(e, entity);
DeclInfo *decl = decl_info_of_entity(e);
if (decl != nullptr) {
if (decl->attributes.count > 0) {
error(decl->attributes[0], "Constant alias declarations cannot have attributes");
}
}
override_entity_in_scope(e, entity);
return;
}
}