summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/T13988.hs
blob: 54969cad4d54d14b89335e3c12b35a6f8e1b86dd (plain)
1
2
3
4
5
6
7
8
{-# LANGUAGE TypeInType, GADTs #-}

module T13988 where

import Data.Kind

data Foo (a :: k) where
  MkFoo :: (k ~ Type) => Foo (a :: k)