mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 12:18:19 +00:00
Fix repro for nasty import bug
The bug reproduces if you go to the commit before this one; seems to be the problem is importing an un-exposed value as unqualified (possibly from a package, might be relevant)
This commit is contained in:
parent
bca6417a9d
commit
7f2e2d0803
1 changed files with 1 additions and 1 deletions
|
@ -4864,7 +4864,7 @@ fn import_variable_for_symbol(
|
|||
// Today we define builtins in each module that uses them
|
||||
// so even though they have a different module name from
|
||||
// the surrounding module, they are not technically imported
|
||||
debug_assert!(symbol.is_builtin());
|
||||
debug_assert!(symbol.is_builtin(), "The symbol {:?} was not found and was assumed to be a builtin, but it wasn't a builtin.", symbol);
|
||||
return;
|
||||
}
|
||||
AbilityMemberMustBeAvailable => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue