summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/GhciKinds.hs
blob: 4945814ff9591882a92f9da514aa23add27a2d74 (plain)
1
2
3
4
5
6
{-# LANGUAGE TypeFamilies #-}
module GhciKinds where

type family F a :: *
type instance F [a] = a -> F a
type instance F Int = Bool