mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00
Turn set test back on
This commit is contained in:
parent
9f45c2ff47
commit
d5f8af8021
1 changed files with 18 additions and 19 deletions
|
@ -357,26 +357,25 @@ expect
|
|||
|
||||
x == fromList (toList x)
|
||||
|
||||
# TODO: This test that puts a Set in a Set fails to unify.
|
||||
# expect
|
||||
# orderOne : Set Nat
|
||||
# orderOne =
|
||||
# single 1
|
||||
# |> insert 2
|
||||
expect
|
||||
orderOne : Set Nat
|
||||
orderOne =
|
||||
single 1
|
||||
|> insert 2
|
||||
|
||||
# orderTwo : Set Nat
|
||||
# orderTwo =
|
||||
# single 2
|
||||
# |> insert 1
|
||||
orderTwo : Set Nat
|
||||
orderTwo =
|
||||
single 2
|
||||
|> insert 1
|
||||
|
||||
# wrapperOne : Set (Set Nat)
|
||||
# wrapperOne =
|
||||
# single orderOne
|
||||
# |> insert orderTwo
|
||||
wrapperOne : Set (Set Nat)
|
||||
wrapperOne =
|
||||
single orderOne
|
||||
|> insert orderTwo
|
||||
|
||||
# wrapperTwo : Set (Set Nat)
|
||||
# wrapperTwo =
|
||||
# single orderTwo
|
||||
# |> insert orderOne
|
||||
wrapperTwo : Set (Set Nat)
|
||||
wrapperTwo =
|
||||
single orderTwo
|
||||
|> insert orderOne
|
||||
|
||||
# wrapperOne == wrapperTwo
|
||||
wrapperOne == wrapperTwo
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue