hasktags
hasktags copied to clipboard
Operators from type classes confuse the parser
Having this
data D = C
instance Eq D where
C == C = True
test = C
and trying to jump-to-definition of C
results in both the data D = C
and C == C = True
lines being suggested.