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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
{-# OPTIONS_GHC -fno-warn-redundant-constraints #-}
{-# LANGUAGE RankNTypes, ConstraintKinds, KindSignatures, DataKinds, TypeFamilies #-}
module T9569 where
import GHC.Exts
data Proxy (c :: Constraint)
class Deferrable (c :: Constraint) where
defer :: Proxy c -> (c => a) -> a
deferPair :: (Deferrable c1, Deferrable c2)
=> Proxy (c1,c2) -> (((c1,c2) :: Constraint) => a) -> a
-- NB: ((c1,c2) :: Constraint) => blah
-- is different form
-- (c1,c2) => blah
-- The former has dict, the latter has two
deferPair _ _ = undefined
instance (Deferrable c1, Deferrable c2) => Deferrable (c1,c2) where
-- defer p f = deferPair p f -- Succeeds
defer = deferPair -- Fails
{- Notes Apr 2020.
~~~~~~~~~~~~~~~~~
Note the careful type for deferPair! You can also say
deferPair :: (Deferrable c1, Deferrable c2, d ~ (c1,c2))
=> Proxy (c1,c2) -> (d => a) -> a
but NOT
deferPair :: (Deferrable c1, Deferrable c2)
=> Proxy (c1,c2) -> ((c1,c2) => a) -> a
The point is that
(c1,c2) => a
is short for
c1 => c2 => a
-}
{-
[G] Deferrable c1, Deferrable c2
[W] Proxy (c1,c2) -> ((c1,c2) => a) -> a
~
Proxy (c1x,c2x) -> ((c1x,c2x) => ax) -> ax
[w] Deferrable c1x
[w] Deferrable c2x
-}
|