summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/T12045TH1.hs
blob: 43db0069b62b50346fee1fc98ebf4ff69725a320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{-# LANGUAGE TemplateHaskell, DataKinds, PolyKinds,
             StandaloneKindSignatures, TypeApplications, TypeFamilies #-}

module T12045TH1 where
import Data.Kind
import Language.Haskell.TH hiding (Type)

$([d| type F :: k -> Type
      type family F a where
                     F @Type Int = Bool
                     F @(Type->Type) Maybe = Char |])


$([d| data family D (a :: k) |])

$([d| data instance D @Type a = DBool |])

$([d| data instance D @(Type -> Type) b = DChar |])