summaryrefslogtreecommitdiff
path: root/testsuite/tests/indexed-types/should_fail/T4272.hs
blob: d3f1c5458160d3f5b77a3c56604b5cad43d12e39 (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
 {-# LANGUAGE TypeFamilies, ScopedTypeVariables, FlexibleContexts #-}  

-- See also #5763 for why we don't really want to see
-- an occurs-check error from this program

module T4272 where

class Family f where
   terms :: f a -> a

class Family (TermFamily a) => TermLike a where
   type TermFamily a :: * -> *

laws :: forall a b. TermLike a => TermFamily a a -> b  
laws t = prune t (terms (undefined :: TermFamily a a))

prune :: TermLike x => TermFamily x x -> TermFamily x x -> b
prune = undefined  

-- terms :: Family f => f a -> a
--    Instantiate with f = TermFamily a
-- terms :: Family (TermFamily a) => TermFamily a a -> a
-- (terms (undefined::TermFamily a a) :: Family (TermFamily a) => a
-- So the call to prune forces the equality
--    TermFamily a a ~ a
-- which triggers an occurs check