mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
Derive key for decoding should pass under recursion
This commit is contained in:
parent
f3d1582a5e
commit
99d31aa74c
1 changed files with 2 additions and 1 deletions
|
@ -100,7 +100,8 @@ impl FlatDecodable {
|
||||||
Self::from_var(subs, range.default_compilation_variable())
|
Self::from_var(subs, range.default_compilation_variable())
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
Content::RecursionVar { .. } => Err(Underivable),
|
Content::RecursionVar { structure, .. } => Self::from_var(subs, structure),
|
||||||
|
//
|
||||||
Content::Error => Err(Underivable),
|
Content::Error => Err(Underivable),
|
||||||
Content::FlexVar(_)
|
Content::FlexVar(_)
|
||||||
| Content::RigidVar(_)
|
| Content::RigidVar(_)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue