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
Should be a good first issue if identifying the right bit of code to remove is simple enough (as weith haskell/ghcide#54).
If the -Wredundant-constraints warning is on, GHC emits warnings like:
-Wredundant-constraints
C:\msys64\home\ganesh\temp\x\Foo.hs:3:1: warning: • Redundant constraint: Ord a • In the type signature for: foo :: forall a. Ord a => a -> Int
Unfortunately the source range covers all of the type signature for foo, not just the redundant constraint itself.
foo
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Should be a good first issue if identifying the right bit of code to remove is simple enough (as weith haskell/ghcide#54).
If the
-Wredundant-constraints
warning is on, GHC emits warnings like:Unfortunately the source range covers all of the type signature for
foo
, not just the redundant constraint itself.The text was updated successfully, but these errors were encountered: