mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 07:14:46 +00:00
Fix failing compilation in Expr2
This commit is contained in:
parent
3b7596dd34
commit
fe85af8d03
5 changed files with 48 additions and 13 deletions
|
@ -386,7 +386,18 @@ fn can_annotation_help(
|
|||
}
|
||||
},
|
||||
|
||||
Record { fields, ext, .. } => {
|
||||
Record { fields, ext } => {
|
||||
let field_types = can_assigned_fields(
|
||||
env,
|
||||
&fields.items,
|
||||
region,
|
||||
scope,
|
||||
var_store,
|
||||
introduced_variables,
|
||||
local_aliases,
|
||||
references,
|
||||
);
|
||||
|
||||
let ext_type = match ext {
|
||||
Some(loc_ann) => can_annotation_help(
|
||||
env,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue