id	summary	reporter	owner	description	type	status	priority	milestone	version	resolution	keywords	cc
50	"Non-recognised declarations can ""get in the way"" of Haddock comments being recognised"	waern		"
Pragmas and other non-recognised declarations can stop Haddock commentation being recognised.

e.g. This is undocumented in the resulting haddock (""A comment"" is
missing).

{{{
-- | A comment.
{-# INLINE genVennAsList #-}
genVennAsList :: (a -> b -> COrdering c) -> AVL a -> AVL b -> (AVL a, [c], AVL b)
genVennAsList cmp = genVennToList cmp []
}}}

.. but this is OK

{{{
-- | A comment.
genVennAsList :: (a -> b -> COrdering c) -> AVL a -> AVL b -> (AVL a, [c], AVL b)
{-# INLINE genVennAsList #-}
genVennAsList cmp = genVennToList cmp []
}}}"	defect	closed	major		2.1.0	fixed		
