hasktags icon indicating copy to clipboard operation
hasktags copied to clipboard

Operators from type classes confuse the parser

Open effectfully opened this issue 4 years ago • 0 comments

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.

effectfully avatar Apr 18 '20 17:04 effectfully