Re: un-used record wildcards

2010-10-16 Thread Neil Mitchell
:01 |  To: Antoine Latter |  Cc: glasgow-haskell-users@haskell.org |  Subject: Re: un-used record wildcards | |  On Wed, Oct 13, 2010 at 01:47:11PM -0500, Antoine Latter wrote: |   On Wed, Oct 13, 2010 at 1:02 PM, Serge D. Mechveliani mech...@botik.ru |  wrote: |   Dear GHC developers

Re: un-used record wildcards

2010-10-15 Thread Serge D. Mechveliani
Of Serge D. Mechveliani | Sent: 14 October 2010 11:01 | To: Antoine Latter | Cc: glasgow-haskell-users@haskell.org | Subject: Re: un-used record wildcards | | On Wed, Oct 13, 2010 at 01:47:11PM -0500, Antoine Latter wrote: | On Wed, Oct 13, 2010 at 1:02 PM, Serge D. Mechveliani mech

Re: un-used record wildcards

2010-10-14 Thread Serge D. Mechveliani
On Wed, Oct 13, 2010 at 01:47:11PM -0500, Antoine Latter wrote: On Wed, Oct 13, 2010 at 1:02 PM, Serge D. Mechveliani mech...@botik.ru wrote: Dear GHC developers, I use the language extension of RecordWildcards, for example,                                f (Foo {foo1 = n, foo2 = m,

RE: un-used record wildcards

2010-10-14 Thread Simon Peyton-Jones
: glasgow-haskell-users-boun...@haskell.org [mailto:glasgow-haskell-users- | boun...@haskell.org] On Behalf Of Serge D. Mechveliani | Sent: 14 October 2010 11:01 | To: Antoine Latter | Cc: glasgow-haskell-users@haskell.org | Subject: Re: un-used record wildcards | | On Wed, Oct 13, 2010

un-used record wildcards

2010-10-13 Thread Serge D. Mechveliani
Dear GHC developers, I use the language extension of RecordWildcards, for example, f (Foo {foo1 = n, foo2 = m, ..}) = ... But the complier warns about un-used values of foo3, foo4, probably, due to the extension of Foo {foo1 = n, foo2

Re: un-used record wildcards

2010-10-13 Thread Antoine Latter
On Wed, Oct 13, 2010 at 1:02 PM, Serge D. Mechveliani mech...@botik.ru wrote: Dear GHC developers, I use the language extension of RecordWildcards, for example,                                f (Foo {foo1 = n, foo2 = m, ..}) = ... But the complier warns about un-used values of  foo3, foo4,