Fix mono test

This commit is contained in:
Ayaz Hafiz 2023-01-18 10:06:14 -06:00
parent 7b8783ae0d
commit e6ab8dcf60
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
2 changed files with 18 additions and 8 deletions

View file

@ -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}
"#