hasktags icon indicating copy to clipboard operation
hasktags copied to clipboard

support existential quantification

Open dmwit opened this issue 5 years ago • 0 comments

The following file is accepted by GHC, defining type X and computation Y:

{-# LANGUAGE ExistentialQuantification #-}
data X = forall a. Y

However, hasktags incorrectly sees this as defining type X and computation forall:

X	test.hs	2
forall	test.hs	2

dmwit avatar Oct 02 '19 19:10 dmwit