On Mon, Aug 11, 2014 at 11:36 AM, Twan van Laarhoven <twanvl@gmail.com> wrote:
To me, perhaps naively, IncoherentInstances is way more scary than OverlappingInstances.
It might be a bit naive. Most things that incoherent instances would allow are allowed with overlapping instances so long as you partition your code into two modules. So unless such a partitioning is impossible, overlapping instances are almost as scary as incoherent instances (unless the module separation somehow makes it less scary).
And actually, with the way GHC handles instances, you can get more incoherent behavior than incoherent instances allow without enabling any extensions, just using modules:
module A whereclass Foo a where foo :: a
module B whereimport A
instance Foo Int where foo = 5
bar :: Int ; bar = foomodule C whereimport Ainstance Foo Int where foo = 6baz :: Int ; baz = foomodule D whereimport Bimport Cquux = bar + baz -- 11
-- Dan
_______________________________________________
Libraries mailing list
Libraries@haskell.org
http://www.haskell.org/mailman/listinfo/libraries