mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +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)
|
constraints.push_type(types, typ)
|
||||||
};
|
};
|
||||||
let specialized_type_index = {
|
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)
|
constraints.push_type(types, typ)
|
||||||
};
|
};
|
||||||
let expected_specialized =
|
let expected_specialized =
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue