summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/T7939.hs
blob: e27c39b84b9df2a352c310136f4a4e1c007708fb (plain)
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
26
27
28
{-# LANGUAGE TypeFamilies, PolyKinds, DataKinds, TypeOperators, StandaloneKindSignatures #-}
module T7939 where
import Data.Kind (Type)

class Foo a where
   type Bar a b

type family F a
type instance F Int = Bool

type family G a where
  G Int = Bool

type family H a where
  H False = True

type family J a where
  J '[] = False
  J (h ': t) = True

type family K a where
  K '[] = Nothing
  K (h ': t) = Just h

type L :: k -> Type -> k
type family L a b where
  L Int Int = Bool
  L Maybe Bool = IO