We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SomeVec is a datatype which is used in generators, however Hedgehog's forAll function https://hackage.haskell.org/package/hedgehog-1.1.1/docs/Hedgehog-Internal-Property.html#v:forAll
SomeVec
forAll
forAll :: (Monad m, Show a, HasCallStack) => Gen a -> PropertyT m a requires a Show instance for a.
forAll :: (Monad m, Show a, HasCallStack) => Gen a -> PropertyT m a
Show
a
Hence, all datatypes in clash-prelude-hedgehog that are used in generators should have a Show instance.
clash-prelude-hedgehog
The text was updated successfully, but these errors were encountered:
We've released v1.6.3, which includes a fix for this issue.
Sorry, something went wrong.
alex-mckenna
Successfully merging a pull request may close this issue.
SomeVec
is a datatype which is used in generators, however Hedgehog'sforAll
functionhttps://hackage.haskell.org/package/hedgehog-1.1.1/docs/Hedgehog-Internal-Property.html#v:forAll
forAll :: (Monad m, Show a, HasCallStack) => Gen a -> PropertyT m a
requires aShow
instance fora
.Hence, all datatypes in
clash-prelude-hedgehog
that are used in generators should have aShow
instance.The text was updated successfully, but these errors were encountered: