Ticket #5331 (closed feature request: fixed)
Warning for unused existentially quantified types
Description
I found a bug in my code that boils down to:
{-# LANGUAGE ExistentialQuantification #-}
data X = forall a b. X a
Obviously the type 'b' is not used. It didn't hurt, but it could have been, that I intended to do something with the 'b' and then forgot it. I would like to get a warning in this situation like "Unused type variable 'b'".
It might even be, that no existential quantification is needed at all, as in the following case:
data Y = forall a. Y
Change History
Note: See
TracTickets for help on using
tickets.
