We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ebbd89 commit e1f1f5dCopy full SHA for e1f1f5d
test/Main.purs
@@ -115,6 +115,7 @@ main = do
115
116
log "Recheck #28"
117
nowGood' gh28
118
+ nowGood' gh28'
119
120
log "toArrayBy"
121
quickCheck' 10000 $ \ (a :: Array (Tuple CollidingInt Int)) ->
@@ -461,3 +462,6 @@ t249 = let k = 855538
461
462
463
gh28 :: Boolean
464
gh28 = (HM.singleton 'x' 10 # HM.upsert (_ + 1) 'x' 1) == HM.singleton 'x' 11
465
+
466
+gh28' :: Boolean
467
+gh28' = (HM.singleton 'y' 10 # HM.upsert (_ + 1) 'x' 1) == HM.fromArray [Tuple 'x' 1, Tuple 'y' 10]
0 commit comments