id,summary,reporter,owner,description,type,status,priority,milestone,version,resolution,keywords,cc
165,Parse error on comment before opening brace of record,Mathnerd314,,"This gives ""parse error on input `{'"":
{{{
data Test =
    Test
        -- | A value
        { a :: Int
        -- | Another value
        , b :: Int
        }
}}}
This does not:

{{{
data Test =
    Test
        { -- | A value
          a :: Int
        , -- | Another value
          b :: Int
        }
}}}
The first should parse and give the same result as the second.",defect,new,minor,,2.8.1,,,
