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
Since switching to GHC 8.4.4, there's been a bunch of new warnings, especially warning: [-Wpartial-fields] Use of partial record field selector because of data structures like
dataKeysDiff=Equal
| FstIsPref{diff::!Key}
since you can apply diff to FstIsPref but not Equal.
According to the organization style guide: "Records for data types with multiple constructors are forbidden.", so we should remove the record syntax.
Also a warning about module warning [-Wmissing-export-lists] The export item ‘module Main’ is missing an export list in Playground.hs
The text was updated successfully, but these errors were encountered:
Since switching to GHC 8.4.4, there's been a bunch of new warnings, especially
warning: [-Wpartial-fields] Use of partial record field selector
because of data structures likesince you can apply
diff
toFstIsPref
but notEqual
.According to the organization style guide: "Records for data types with multiple constructors are forbidden.", so we should remove the record syntax.
Also a warning about module
warning [-Wmissing-export-lists] The export item ‘module Main’ is missing an export list
inPlayground.hs
The text was updated successfully, but these errors were encountered: