Fix #3630 (first part)

This commit is contained in:
gingerBill
2024-05-26 12:17:03 +01:00
parent 590db0838a
commit 64bdb3a097
2 changed files with 2 additions and 2 deletions

View File

@@ -1805,7 +1805,7 @@ gb_internal Entity *check_ident(CheckerContext *c, Operand *o, Ast *n, Type *nam
case Entity_ImportName:
if (!allow_import_name) {
error(n, "Use of import '%.*s' not in selector", LIT(name));
error(n, "Use of import name '%.*s' not in the form of 'x.y'", LIT(name));
}
return e;
case Entity_LibraryName: