summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/typecheck/should_compile/LoopOfTheDay2.hs
blob: 0996e7c2f20af2925a37c1128a20e94aa1501934 (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
{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances, UndecidableInstances #-}

-- Compilation loops in GHC 6.2!
-- While LoopOfTheDay1.hs did compile and work,
-- this one loops during compilation, even though
-- there is only an innocent difference regarding T1,
-- i.e., an additional, non-recursive constructor component.

module ShouldCompile where

data T1 = T1a Int | T1b T1

class C0 x where foo :: x -> (); foo = undefined
-- foo :: C0 x => x -> ()

class C1 x y
class C1 x y => C2 x y
		
instance C0 Int              => C1 () Int	-- I1
instance C0 T1               => C1 () T1	-- I2
instance (C1 x T1, C1 x Int) => C2 x T1		-- I3
instance C1 x Int            => C2 x Int	-- I4
instance C2 () T1            => C0 T1		-- I5
instance C2 () Int           => C0 Int		-- I6


baz = foo (T1b (T1a 3))

{- Need
		C0 T1
-->(I5)		C2 () T1
-->(I3)		C1 () T1, C1 () Int
-->(I1,I2)	C0 T1, C0 Int
-->(recusive)	C0 Int
-->(I6)		C2 () Int
-->(I4)		C1 () Int
-->(recursive)	{}
-}