mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
fix extra ampersands
This commit is contained in:
parent
b6116eeb98
commit
899cbeabd7
79 changed files with 372 additions and 376 deletions
|
@ -177,7 +177,7 @@ fn unify_alias(
|
|||
match other_content {
|
||||
FlexVar(_) => {
|
||||
// Alias wins
|
||||
merge(subs, &ctx, Alias(symbol, args.to_owned(), real_var))
|
||||
merge(subs, ctx, Alias(symbol, args.to_owned(), real_var))
|
||||
}
|
||||
RecursionVar { structure, .. } => unify_pool(subs, pool, real_var, *structure),
|
||||
RigidVar(_) => unify_pool(subs, pool, real_var, ctx.second),
|
||||
|
@ -190,7 +190,7 @@ fn unify_alias(
|
|||
}
|
||||
|
||||
if problems.is_empty() {
|
||||
problems.extend(merge(subs, &ctx, other_content.clone()));
|
||||
problems.extend(merge(subs, ctx, other_content.clone()));
|
||||
}
|
||||
|
||||
if problems.is_empty() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue