Created
November 30, 2017 11:43
-
-
Save kcsongor/83f0ee1316c2784428248199032cfe56 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE FlexibleInstances #-} | |
{-# LANGUAGE MultiParamTypeClasses #-} | |
module Overlapping where | |
class C a b where | |
f :: a -> b -> Bool | |
instance C a b where | |
f _ _ = False | |
instance {-# OVERLAPPING #-} C a a where | |
f _ _ = True | |
-- >>> f 'a' 'b' | |
-- True | |
-- | |
-- >>> f 'a' "starfish" | |
-- False |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment