diff options
Diffstat (limited to 'src/check_decl.cpp')
| -rw-r--r-- | src/check_decl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_decl.cpp b/src/check_decl.cpp index 4e4355968..3a8f787c6 100644 --- a/src/check_decl.cpp +++ b/src/check_decl.cpp @@ -459,7 +459,7 @@ void init_entity_foreign_library(CheckerContext *ctx, Entity *e) { Entity *found = scope_lookup_entity(ctx->scope, name); if (found == nullptr) { if (is_blank_ident(name)) { - error(ident, "'_' cannot be used as a value type"); + // NOTE(bill): link against nothing } else { error(ident, "Undeclared name: %.*s", LIT(name)); } |