mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
Eliminate indirect reference
This commit is contained in:
parent
b03a1d3efd
commit
bf1b688afb
1 changed files with 1 additions and 1 deletions
|
@ -1388,7 +1388,7 @@ pub fn constrain_expr(
|
|||
constraints.push_type(types, typ)
|
||||
};
|
||||
let specialized_type_index = {
|
||||
let typ = types.from_old_type(&(*specialized_def_type));
|
||||
let typ = types.from_old_type(specialized_def_type);
|
||||
constraints.push_type(types, typ)
|
||||
};
|
||||
let expected_specialized =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue