summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/T7939.stdout
blob: 9a88b5c2946ab8d0a7ff0fc9be6f5220cc626d61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Foo (a :: k) where
  type family Bar (a :: k) b :: *
  	-- Defined at T7939.hs:6:4
Bar :: k -> * -> *
type family F a :: * 	-- Defined at T7939.hs:8:1
type instance F Int -- Defined at T7939.hs:9:1
F :: * -> *
type family G a :: * where G Int = Bool
  	-- Defined at T7939.hs:11:1
G :: * -> *
type family H (a :: Bool) :: Bool where H 'False = 'True
  	-- Defined at T7939.hs:14:1
H :: Bool -> Bool
type family J (a :: [k]) :: Bool where
    J '[] = 'False
    J (h : t) = 'True
  	-- Defined at T7939.hs:17:1
J :: [k] -> Bool
type family K (a :: [k]) :: Maybe k where
    K '[] = 'Nothing
    K (h : t) = 'Just h
  	-- Defined at T7939.hs:21:1
K :: [k] -> Maybe k