Skip to content
Snippets Groups Projects

Fix MulMayOflo for now

Closed Jaro Reinders requested to merge fix-mulmayoflo into master
1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
+ 3
1
@@ -23,7 +23,9 @@ import Expr
prop_mul_may_oflo_correct :: EvalMethod -> TestTree
prop_mul_may_oflo_correct em = testGroup "MulMayOflo"
[ testProperty (show (knownWidth @w)) (prop @w em Proxy)
| SomeWidth (_ :: Proxy w) <- allWidths
| SomeWidth (_ :: Proxy w) <-
-- TODO: replace with 'allWidths' when #23645 is fixed
[SomeWidth (Proxy :: Proxy W32), SomeWidth (Proxy :: Proxy W64)]
]
prop :: forall w. (KnownWidth w)
Loading