mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
fix block_of_memory creation for recursive layouts
This commit is contained in:
parent
c8970bbe45
commit
2ce35cca28
6 changed files with 140 additions and 84 deletions
|
@ -834,7 +834,9 @@ impl Wrapped {
|
|||
},
|
||||
_ => Some(Wrapped::MultiTagUnion),
|
||||
},
|
||||
NullableWrapped { .. } => Some(Wrapped::MultiTagUnion),
|
||||
NullableWrapped { .. } | NullableUnwrapped { .. } => {
|
||||
Some(Wrapped::MultiTagUnion)
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue