Fix missing parameter in to_relevant_branch_help

main is currently broken because of a non-conflicting diff that landed
before the interner change landed.
This commit is contained in:
Ayaz Hafiz 2023-01-12 15:43:14 -06:00
parent 41a7304e77
commit d43387d1be
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58

View file

@ -748,7 +748,7 @@ fn to_relevant_branch_help<'a>(
Identifier(_) | Underscore => Some(branch.clone()),
As(subpattern, _symbol) => {
to_relevant_branch_help(test, path, start, end, branch, *subpattern)
to_relevant_branch_help(interner, test, path, start, end, branch, *subpattern)
}
RecordDestructure(destructs, _) => match test {