id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,os,architecture,failure,difficulty,testcase,blockedby,blocking,related
7658,Support empty record update syntax,glguy,,"Empty record update syntax would be useful for when you are changing phantom type parameters. It is currently explicitly disallowed, but it isn't clear if that is absolutely necessary to me.

{{{
data R phantom = C { a,b :: Int }

r ::  R Int 
r = C 1 2 

--This is OK
r1 :: R Char
r1 = r { a = a r } 

--Why not this?
r2 :: R Char
r2 = r {}
}}}",feature request,closed,normal,,Compiler,7.6.2,wontfix,,,Unknown/Multiple,Unknown/Multiple,None/Unknown,Unknown,,,,
