mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
temp fix to get this passing
This commit is contained in:
parent
853c0387dc
commit
fba66c03b7
1 changed files with 4 additions and 1 deletions
|
@ -4634,7 +4634,10 @@ pub fn build_procedures<'a, 'ctx, 'env>(
|
|||
let func_solutions = mod_solutions.func_solutions(func_name).unwrap();
|
||||
|
||||
let mut it = func_solutions.specs();
|
||||
let func_spec = it.next().unwrap();
|
||||
let Some(func_spec) = it.next() else {
|
||||
// TODO this means a function was not considered host-exposed in mono
|
||||
continue;
|
||||
};
|
||||
debug_assert!(
|
||||
it.next().is_none(),
|
||||
"we expect only one specialization of this symbol"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue