You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 9.8 the Generic instance for tuples changed (see
https://gitlab.haskell.org/ghc/ghc/-/issues/24291) for more details.
Therefore we remove the dependency on the `Generic` instance and the
hashes will be invariant across GHC versions (for now).
Fixes#10269
In 9.8 the Generic instance for tuples changed (see
https://gitlab.haskell.org/ghc/ghc/-/issues/24291) for more details.
Therefore we remove the dependency on the `Generic` instance and the
hashes will be invariant across GHC versions (for now).
Fixes#10269
In 9.8 the Generic instance for tuples changed (see
https://gitlab.haskell.org/ghc/ghc/-/issues/24291) for more details.
Therefore we remove the dependency on the `Generic` instance and the
hashes will be invariant across GHC versions (for now).
Fixes#10269
Related to #10263
Currently the structured hash test is annoying to update as it produces different results on different GHC versions.
The reason for this is the Generic instance for
(,)
changed in 9.8 (https://gitlab.haskell.org/ghc/ghc/-/issues/24291)We can fix this issue by not relying on the
Generic
instance for tuples.The text was updated successfully, but these errors were encountered: