mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-19 01:59:48 +00:00
Rename IncompleteAbility
This commit is contained in:
parent
c0d26226dd
commit
04ee74542d
2 changed files with 5 additions and 5 deletions
|
@ -715,7 +715,7 @@ fn run_in_place(
|
|||
exposed_by_module,
|
||||
);
|
||||
|
||||
deferred_obligations.add(new_must_implement, AbilityImplError::IncompleteAbility);
|
||||
deferred_obligations.add(new_must_implement, AbilityImplError::DoesNotImplement);
|
||||
|
||||
let (obligation_problems, _derived) = deferred_obligations.check_all(subs, abilities_store);
|
||||
problems.extend(obligation_problems);
|
||||
|
@ -1467,7 +1467,7 @@ fn solve(
|
|||
introduce(subs, rank, pools, &vars);
|
||||
|
||||
deferred_obligations
|
||||
.add(must_implement_ability, AbilityImplError::IncompleteAbility);
|
||||
.add(must_implement_ability, AbilityImplError::DoesNotImplement);
|
||||
deferred_uls_to_resolve.union(lambda_sets_to_specialize);
|
||||
|
||||
// Case 1: unify error types, but don't check exhaustiveness.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue