diff options
| author | gingerBill <bill@gingerbill.org> | 2024-05-26 12:17:03 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-05-26 12:17:03 +0100 |
| commit | 64bdb3a09770b96afccd3b375b5c91214e97415b (patch) | |
| tree | 0975ec5ec78a9bb0fb1c130fd17b5c236f0938fd /src/check_expr.cpp | |
| parent | 590db0838a575913cc88e17f9bc7a8e84aaa4d04 (diff) | |
Fix #3630 (first part)
Diffstat (limited to 'src/check_expr.cpp')
| -rw-r--r-- | src/check_expr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_expr.cpp b/src/check_expr.cpp index 5d4d6c73b..8672941c1 100644 --- a/src/check_expr.cpp +++ b/src/check_expr.cpp @@ -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: |