id,summary,reporter,owner,description,type,status,priority,milestone,version,resolution,keywords,cc
82,Comments inside record field types,SamB,,"for some reason,

{{{
newtype P a = P { runP ::
                        String          -- ^ Input string
                     -> Int             -- ^ Current column
                     -> Int             -- ^ Current line
                     -> SrcLoc          -- ^ Location of last token read
                     -> ParseState      -- ^ Layout info.
                     -> ParseMode       -- ^ Parse parameters
                     -> ParseStatus a
                }
}}}
fails to parse, but
{{{
newtype P a = P { runP ::
                        String          -- Input string
                     -> Int             -- Current column
                     -> Int             -- Current line
                     -> SrcLoc          -- Location of last token read
                     -> ParseState      -- Layout info.
                     -> ParseMode       -- Parse parameters
                     -> ParseStatus a
                }
}}}
parses fine.",enhancement,new,minor,,,,,SamB mmitar@…
