summaryrefslogtreecommitdiff
path: root/testsuite/tests/indexed-types/should_compile/T4981-V3.hs
blob: e6bcd471d9d604020c4e29b85536d0520f0ea981 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{-# LANGUAGE CPP, TypeFamilies, FlexibleContexts #-}
module Class ( cleverNamedResolve ) where

data FL p = FL p

class PatchInspect p where
instance PatchInspect p => PatchInspect (FL p) where

type family PrimOf p
type instance PrimOf (FL p) = PrimOf p

data WithName prim = WithName prim

instance PatchInspect prim => PatchInspect (WithName prim) where

class (PatchInspect (PrimOf p)) => Conflict p where
    resolveConflicts :: p -> PrimOf p

instance Conflict p => Conflict (FL p) where
    resolveConflicts = undefined

type family OnPrim p

joinPatches :: p -> p

joinPatches = id

cleverNamedResolve :: (Conflict (OnPrim p)
                      ,PrimOf (OnPrim p) ~ WithName (PrimOf p))
                   => p -> FL (OnPrim p) -> WithName (PrimOf p)
cleverNamedResolve x = resolveConflicts . joinPatches
-- I added the parameter 'x' to make the signature unambiguous
-- I don't think that ambiguity is essential to the original problem

{-
resolveConflicts :: q -> PrimOf q
 (w) FL (OnPrim p) ~ q
 (w) WithName (PrimOf p) ~ PrimOf q
==>
 (w) PrimOf (OnPrim p) ~ PrimOf (FL (OnPrim p))
==>
 (w) PrimOf (OnPrim p) ~ PrimOf (OnPrim p)

-}