mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
Fix mono test
This commit is contained in:
parent
7b8783ae0d
commit
e6ab8dcf60
2 changed files with 18 additions and 8 deletions
|
@ -1838,16 +1838,16 @@ fn instantiate_annotated_as_recursive_alias_multiple_polymorphic_expr() {
|
|||
main =
|
||||
Value : [Nil, Array (List Value)]
|
||||
|
||||
foo : [Nil]_
|
||||
foo = Nil
|
||||
foo : {} -> [Nil]_
|
||||
foo = \{} -> Nil
|
||||
|
||||
v1 : Value
|
||||
v1 = foo
|
||||
v1 = foo {}
|
||||
|
||||
Value2 : [Nil, B U16, Array (List Value)]
|
||||
|
||||
v2 : Value2
|
||||
v2 = foo
|
||||
v2 = foo {}
|
||||
|
||||
{v1, v2}
|
||||
"#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue