Re: Wish List (Re: False warning about overlapping patterns)

2000-02-06 Thread Reuben Thomas
>http://www.informatik.uni-muenchen.de/haskell-wish-list/ > > Could somebody please update the link on haskell.org? Done. -- http://sc3d.org/rrt/ | certain, a. insufficiently analysed

Re: Wish List (Re: False warning about overlapping patterns)

2000-02-06 Thread Sven Panne
Marcin 'Qrczak' Kowalczyk wrote: > http://marutea.pms.informatik.uni-muenchen.de/wishlist/ > is inaccessible... Oooops, that's because of our new firewall. I've moved it to a more generic address, which should work: http://www.informatik.uni-muenchen.de/haskell-wish-list/ Could somebody plea

Wish List (Re: False warning about overlapping patterns)

2000-02-06 Thread Marcin 'Qrczak' Kowalczyk
Sun, 06 Feb 2000 16:45:06 +0100, Sven Panne <[EMAIL PROTECTED]> pisze: > Hmmm, perhaps I should update my (slightly dormant) Wish List... http://marutea.pms.informatik.uni-muenchen.de/wishlist/ is inaccessible... -- __("

Re: False warning about overlapping patterns

2000-02-06 Thread Sven Panne
Marcin 'Qrczak' Kowalczyk wrote: > GHC gives a false warning about overlapping patterns (-Wall): > > f "ab"= 1 > f ('c':_) = 2 > > Surprisingly, changing "ab" to ['a','b'] shuts up the warning. > [...] This

False warning about overlapping patterns

2000-02-06 Thread Marcin 'Qrczak' Kowalczyk
GHC gives a false warning about overlapping patterns (-Wall): f "ab"= 1 f ('c':_) = 2 Surprisingly, changing "ab" to ['a','b'] shuts up the warning. The (correct) warning about non-exhaustive patterns says: Patterns not matched: