summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/th/TH_tf2.hs
blob: 94be2913243bf0cb2d7ca7934c334e80670e53b7 (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
{-# LANGUAGE TypeFamilies #-}

module TH_tf2 where

{-
$( [d| class C a where
         data T a
         foo :: Bool -> T a |] )

$( [d| instance C Int where
         data T Int = TInt Bool 
         foo b = TInt (b && b) |] )

$( [d| instance C Float where
         data T Float = TFloat {flag :: Bool}
         foo b = TFloat {flag = b && b} |] )
-}

class D a where
         type S a 
         bar :: S a -> Int

instance D Int where
         type S Int = Bool 
         bar c = if c then 1 else 2