File: Overlapping.hs

package info (click to toggle)
haskell-src-exts 1.23.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 25,852 kB
  • sloc: haskell: 13,707; makefile: 12
file content (25 lines) | stat: -rw-r--r-- 414 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{-# 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

instance {-# OVERLAPS #-} C a a where
  f _ _ = True

instance {-# OVERLAPPABLE #-} C a a where
  f _ _ = True

-- >>> f 'a' 'b'
-- True
--
-- >>> f 'a' "starfish"
-- False